SMART datagrid v.1 > Classes > RowGroup

Back  Forward

DataLudi.RowGroup.expanderVisible  property

If it is true, it will display the icon button which expands and closes the group in merged cell of Merge Mode or group header. 

It specifies button color by expanderStyles

Defaults to true.

Getter
function expanderVisible(): Boolean
Setter
function setExpanderVisible(value: Boolean)
Code -1
    $('#toggleExpander').click(function (e) {
        var visible = grid.rowGroup().expanderVisible();
        grid.rowGroup().setExpanderVisible(!visible);
    });
See Also
expanderStyles
displayMode
mergeMode
Examples
Row Grouping
Merged Mode Row Grouping