New to Kendo UI for Vue? Start a free 30-day trial
GridRowType
The type of the GridRow component.
The available values are:
groupHeader—The row is a group header.groupFooter—The row is a group footer.data—The row corresponds to an item from thedatacollection which is passed to the Grid.
type GridRowType = "groupFooter" | "groupHeader" | "data";