Represents a cell within a grid row. It is the primary focusable element
within the grid. It can be disabled and can have its selection state managed
through the selected input.
element
HTMLElementA reference to the host element.
active
anyWhether the cell is currently active (focused).
textDirection
anyText direction.
id
anyA unique identifier for the cell.
role
anyThe ARIA role for the cell.
rowSpan
anyThe number of rows the cell should span.
colSpan
anyThe number of columns the cell should span.
rowIndex
anyThe index of this cell's row within the grid.
colIndex
anyThe index of this cell's column within the grid.
disabled
anyWhether the cell is disabled.
selected
anyWhether the cell is selected.
selectable
anyWhether the cell is selectable.
orientation
anyOrientation of the widgets in the cell.
wrap
anyWhether widgets navigation wraps.
tabindex
anyThe tabindex override.
Description
Represents a cell within a grid row. It is the primary focusable element
within the grid. It can be disabled and can have its selection state managed
through the selected input.
<td ngGridCell [disabled]="isDisabled" [(selected)]="isSelected"> Cell Content</td>