Skip to content

RevoGrid Documentation v4.25.0 / GroupingOptions

Type Alias: GroupingOptions

ts
type GroupingOptions: {
  groupCellTemplate: GroupCellTemplateFunc;
  groupLabelTemplate: GroupLabelTemplateFunc;
  preserveGroupingOnUpdate: boolean;
  props: ColumnProp[];
 } & ExpandedOptions;

Type declaration

NameTypeDescriptionDefined in
groupCellTemplateGroupCellTemplateFuncCustom template for cells in synthetic group rows. When provided, group rows render only the columns in the current horizontal viewport and this template takes precedence over groupLabelTemplate.src/plugins/groupingRow/grouping.row.types.ts:127
groupLabelTemplateGroupLabelTemplateFuncCustom group label templatesrc/plugins/groupingRow/grouping.row.types.ts:121
preserveGroupingOnUpdatebooleanShould grouping be preserved on source update. default: truesrc/plugins/groupingRow/grouping.row.types.ts:117
propsColumnProp[]Column props to which grouping will be appliedsrc/plugins/groupingRow/grouping.row.types.ts:111

Defined in

src/plugins/groupingRow/grouping.row.types.ts:107