New to KendoReactStart a free 30-day trial

The settings of the rows prop options.

Definition

Package:@progress/kendo-react-grid

Properties

data?

ComponentType​<GridCustomRowProps>

Custom component for rendering the data row.

Example:
tsx
import { MyDataRow } from './MyDataRow';
<Grid rows={{ data: MyDataRow }} />

Custom component for rendering the group footer row.

Example:
tsx
import { MyGroupFooterRow } from './MyGroupFooterRow';
<Grid rows={{ groupFooter: MyGroupFooterRow }} />

Custom component for rendering the group header row.

Example:
tsx
import { MyGroupHeaderRow } from './MyGroupHeaderRow';
<Grid rows={{ groupHeader: MyGroupHeaderRow }} />

Custom component for rendering pinned data rows. Falls back to rows.data (then default) when omitted.

Example:
tsx
import { MyPinnedRow } from './MyPinnedRow';
<Grid rows={{ pinnedData: MyPinnedRow }} />