IgrCellType
Interface representing a cell in the grid. It is essentially the blueprint to a cell object. Contains definitions of properties and methods, relevant to a cell
Properties
Section titled "Properties"Optional cellID
Section titled "cellID"Optional; The cellID is the unique key, used to identify the cell
cellID?: any Optional id
Section titled "id"Optional; An object identifying the cell. It contains rowID, columnID, and rowIndex of the cell.
id?: object Optional readonly
Section titled "readonly"readonly?: boolean Optional title
Section titled "title"An optional title to display for the cell
title?: any Optional validation
Section titled "validation"Optional; An object representing the validation state of the cell. Whether it's valid or invalid, and if it has errors
validation?: IgrGridValidationState Optional visibleColumnIndex
Section titled "visibleColumnIndex"The index of the column that the cell belongs to. It counts only the visible (not hidden) columns
visibleColumnIndex?: number Accessors
Section titled "Accessors"active
Section titled "active"active: any column
Section titled "column"column: any editable
Section titled "editable"editable: any editMode
Section titled "editMode"editMode: any editValue
Section titled "editValue"editValue: any grid: any row: any selected
Section titled "selected"selected: any value
Section titled "value"value: any width
Section titled "width"width: any Methods
Section titled "Methods"Optional calculateSizeToFit
Section titled "calculateSizeToFit"calculateSizeToFit?: any Optional setEditMode
Section titled "setEditMode"setEditMode?: any update
Section titled "update"update: any