Returns the column of the cell.
let column = this.cell.column;
IgxGridCell
Returns if the row is currently in edit mode.
IgxGridCell
Starts/ends edit mode for the cell.
cell.editMode = !cell.editMode;
IgxGridCell
Gets the current edit value while a cell is in edit mode.
let editValue = this.cell.editValue;
IgxGridCell
Sets the current edit value while a cell is in edit mode. Only for cell editing mode.
this.cell.editValue = value;
IgxGridCell
Returns whether the cell is editable..
IgxGridCell
Gets the cell id. A cell in the grid is identified by:
let cellID = cell.id;
IgxGridCell
Gets whether the cell is selected.
let isSelected = this.cell.selected;
IgxGridCell
Selects/deselects the cell.
this.cell.selected = true.
IgxGridCell
Gets the validation status and errors, if any.
let validation = this.cell.validation;
let errors = validation.errors;
Returns the cell value.
IgxGridCell
Updates the cell value.
IgxGridCell
Gets the width of the cell.
let cellWidth = this.cell.width;
IgxGridCell
Returns the grid containing the cell.
Memberof
IgxGridCell