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

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

Last updated