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

Optional; The cellID is the unique key, used to identify the cell

cellID?: any

Optional; An object identifying the cell. It contains rowID, columnID, and rowIndex of the cell.

id?: object

Optional readonly

Section titled "readonly"
readonly?: boolean

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
active: any
column: any
editable: any
editMode: any
editValue: any
grid: any
row: any
selected: any
value: any
width: any

Optional calculateSizeToFit

Section titled "calculateSizeToFit"
calculateSizeToFit?: any

Optional setEditMode

Section titled "setEditMode"
setEditMode?: any
update: any