rowGroup API
A grid item is a display model in which one row of a DataProvider or the header or footer of a RowGrouping group is displayed as one line in a grid or tree.
rowGroup API
groupBy
: Executes Row Grouping at a level equal to the number of fields specified. If an empty array or null is specified as an argument, grouping is turned off.isGrouped
: Checks if the grid is RowGrouping. (If grouping, returns true.)isMergedGrouped
: Checks if the grid is in mergeMode.getGroupFields
: Returns the index values of grouping fields in order.getGroupFieldNames
: Returns the names of grouping fields in order. If orgName is set to true, the name defined in fieldSet is returned.getGroupLevels
: Returns what level the group is currently grouped into.getGroupLevel
: Returns the group level of the specified field. The first group level is 1. Returns 0 if not grouped by that field.getGroupIndex
: Returns the index of the group item of the specified item.isGroupItem
: Returns true if the specified item is a group item.isParentVisible
: Returns whether the group item of the specified item is visible.expandGroup
: Expands the specified group. If recursive is set to true, subgroups included in the group will be expanded. If force is set to true, even if it is already expanded, if recursive is set to true, subgroups are expanded.collapseGroup
: Collapses the specified group. If recursive is set to true, descendant groups included in the group will also be collapsed.expandParent
: Expands the group if the specified item is a footer.collapseParent
: Collapses the group if the specified item is a row or footer.
gridView.groupBy(["OrderID", "CustomerID"]);
gridView.groupBy([]);
alert(gridView.isGrouped());
alert(gridView.isMergedGrouped());
alert(gridView.getGroupFields());
alert(gridView.getGroupFieldNames($("#chkOrgFieldName").is(":checked")));