GridRowProps
The props that the Grid passes to the GridRow component when creating it. Accessible during the rowRender
callback of the Grid.
Name | Type | Default | Description |
---|---|---|---|
ariaRowIndex? |
|
The index to be applied to the | |
children? |
|
Determines the children nodes. | |
className? |
|
Sets additional classes to the component. | |
dataIndex |
|
The index of the leaf dataItem in data. Used by selection. | |
dataItem |
|
The | |
id? |
|
Sets the | |
isAltRow |
|
Indicates whether the row is an alternating row. | |
isHidden |
|
Indicates if the row is hidden. The hidden row is rendered above the visible area of the Grid. Occurs when the Grid uses virtualization and the row is on the current page. When | |
isInEdit |
|
Indicates whether the row has at least one edit cell. | |
isSelected |
|
Indicates if the row is selected. | |
onClick |
|
The event that is fired when the row is clicked. | |
onDoubleClick |
|
The event that is fired when the row is double clicked. | |
render? |
|
A function for overriding the default rendering of the row. | |
rowHeight? |
|
Sets the height of the row. | |
rows? |
|
Sets a set of rows components that the Grid will render instead of the built-in row. | |
rowType |
|
The type of the row. | |
selectedField? |
|
The name of the field which will provide a Boolean representation of the selected state of the item. | |
style? |
|
Sets additional CSS styles to the component. |