# setGridGrouping

### Parameters

1. controlId - the Id of the grid control
2. groupConfiguration - either null, or undefined to disable grouping, or a column (controlId)

### Example Usages

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