Indicates whether the cell is currently active (focused).
Optional
cellIDOptional; The cellID
is the unique key, used to identify the cell
Represents the column that the cell belongs to.
Indicates whether the cell can be edited.
Indicates whether the cell is currently in edit mode.
The value to display when the cell is in edit mode.
Represents the grid instance containing the cell
Optional
idOptional; An object identifying the cell. It contains rowID, columnID, and rowIndex of the cell.
Optional
nativeRepresents the native HTML element of the cell itself
Optional
readonlyRepresents the row that the cell belongs to
Indicates whether the cell is currently selected. It is false, if the sell is not selected, and true, if it is.
Optional
titleAn optional title to display for the cell
A method definition to update the value of the cell.
Optional
Readonly
validationOptional; An object representing the validation state of the cell. Whether it's valid or invalid, and if it has errors
The current value of the cell.
Optional
visibleThe index of the column that the cell belongs to. It counts only the visible (not hidden) columns
The CSS width of the cell as a string.
Optional
activateOptional A method to activate the cell. It takes a focus or keyboard event as an argument
Optional
calculateOptional; A method definition to calculate the size of the cell to fit the content The method can be used to calculate the size of the cell with the longest content and resize all cells to that size
Optional
onOptional A method to handle click events on the cell It takes a mouse event as an argument
Optional
onOptional A method to handle double-click events on the cell It takes a mouse event as an argument
Optional
setA method definition to start or end the edit mode of the cell. It takes a boolean value as an argument
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