Indicates whether the cell is currently active (focused).
Returns the column of the cell.
let column = this.cell.column;
Returns if the row is currently in edit mode.
Starts/ends edit mode for the cell.
cell.editMode = !cell.editMode;
Gets the current edit value while a cell is in edit mode.
let editValue = this.cell.editValue;
Sets the current edit value while a cell is in edit mode. Only for cell editing mode.
this.cell.editValue = value;
Returns whether the cell is editable..
Gets the cell id. A cell in the grid is identified by:
let cellID = cell.id;
Gets whether the cell is selected.
let isSelected = this.cell.selected;
Selects/deselects the cell.
this.cell.selected = true.
Gets the validation status and errors, if any.
let validation = this.cell.validation;
let errors = validation.errors;
Returns the cell value.
Updates the cell value.
Gets the width of the cell.
let cellWidth = this.cell.width;
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