SMART datagrid v.1 > Classes > GridBase

Back  Forward

DataLudi.GridBase.rowGroup  property

RowGroup object which manages the information related to row grouping display. 

This object will be created when the grid is initialized. The value of existing object will be changed when setting the property. 

Getter
function rowGroup(): RowGroup
Setter
function setRowGroup(value: Object|RowGroup)
Code -1
    $('#btnToggleMerged').click(function () {
        var rowGroup = grid.rowGroup();
        rowGroup.setMergedMode(!rowGroud.mergedMode());
    });
See also
RowGroup
Examples
Row Grouping