GridCell
Signature:
export interface GridCellRemarks
Base class for the grid's cell-related model
[subclass]
Properties
| Property | Type | Description |
|---|---|---|
| dataColumn | DataColumn | DataColumn information referenced by the cell |
| index | CellIndex | Cell location information |
| item | GridItem | Information model of the item where the cell is located |
| level | number | In the case of a RowGroup-related cell, the level of the item being referenced |
| text | string | text displayed on screen |
| value | any | data being referenced |
| valueColumn | ValueColumn | Column information referenced by the cell |
Properties Desc
dataColumn
DataColumn information referenced by the cell
Type - DataColumn
index
Cell location information
Type - CellIndex
Remarks:
Unlike CellIndex, internal objects that are not proxy processed are passed as is.
item
Information model of the item where the cell is located
Type - GridItem
level
In the case of a RowGroup related cell, the level of the item being referenced
Type - number
text
text displayed on the screen
Type - string
Remarks:
Text displayed in cells other than the grid body area
value
data being referenced
Type - any
Remarks:
The value of the cell located in the grid body area
valueColumn
Column information referenced by the cell
Type - ValueColumn