SMART datagrid v.1 > Classes > GridView

Back  Forward

DataLudi.GridView.onRowGroupHeadCellClicked  event

It will be fired if click group head cell which is added on the left side of column header when doing row grouping. 

function onRowGroupHeadCellClicked (grid: GridBase, level: Integer);
Returns
Void
Parameters
grid - GridBase.
level - Integer.

 

Code -1
    grid.onRowGroupHeadCellClicked = function (grid, level) {
        alert(level + "Select group head of level .");
    };
See also
onRowGroupHeadCellDblClicked
onRowGroupHeaderClicked
onRowGroupHeaderDblClicked
RowGroup
Examples
Row Grouping