New to Kendo UI for VueStart a free 30-day trial

The settings of the rows prop options.

Definition

Package:@progress/kendo-vue-grid

Properties

Custom component for rendering data rows. Falls back to the default when omitted.

Example:
vue
<Grid :rows="{ data: 'MyRow' }" />

Custom component for rendering group footer rows. Falls back to rows.groupFooter (then default) when omitted.

Example:
vue
<Grid :rows="{ groupFooter: 'MyGroupFooter' }" />

Custom component for rendering group header rows. Falls back to the default when omitted.

Example:
vue
<Grid :rows="{ groupHeader: 'MyGroupHeader' }" />

pinnedData?

string | Component​<GridCustomRowProps>

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

Example:
vue
<Grid :rows="{ pinnedData: 'MyPinnedRow' }" />