RevoGrid Documentation v4.15.8 / ExpandedOptions
Type Alias: ExpandedOptions 
ts
type ExpandedOptions: {
  expandedAll: boolean;
  groupLabelTemplate: GroupLabelTemplateFunc;
  prevExpanded: Record<string, boolean>;
  getGroupValue: any;
};Type declaration 
| Name | Type | Description | Defined in | 
|---|---|---|---|
| expandedAll | boolean | Is expanded by default | src/plugins/groupingRow/grouping.row.types.ts:105 | 
| groupLabelTemplate | GroupLabelTemplateFunc | Custom group label template | src/plugins/groupingRow/grouping.row.types.ts:114 | 
| prevExpanded | Record<string,boolean> | Currently expanded items. to set expanded: '{ 'a': true, 'a,b': true, 'a,b,c': true }' | src/plugins/groupingRow/grouping.row.types.ts:100 | 
| getGroupValue | any | Custom group label value parser | src/plugins/groupingRow/grouping.row.types.ts:110 |