setGridGrouping

Sets the grouping options for a grid control.

Parameters

  1. controlId - the Id of the grid control

  2. groupConfiguration - either null, or undefined to disable grouping, or a column (controlId)

Example Usages

app.setGridGrouping(myGridControl); //Disables grouping
app.setGridGrouping(myGridControl, productId); //groups by productId

Return Values

Function does not explicitly produce return value.

Last updated