interface GridRowGroupChildrenGetterParams {
    applyFiltering?: boolean;
    applySorting?: boolean;
    groupId: GridRowId;
    skipAutoGeneratedRows?: boolean;
}

Properties

applyFiltering?: boolean

If true, the method will only return the rows that are matching the current filters

false
applySorting?: boolean

If true, the method will order the returned rows according to the current sorting rules

false
groupId: GridRowId

The row id of the group

skipAutoGeneratedRows?: boolean

If true, the method will not return the generated rows generated by the grid (aggregation footers, groups, ...)

true