SMART datagrid v.1 > Classes > GridView

Back  Forward

DataLudi.GridView.onRowGroupFooterCellClicked  event

It will be fired if click GroupFooter cells when Grid Rows have been done grouping. 

function onRowGroupFooterCellClicked (grid: GridBase, index: CellIndex);
Returns
Void
Parameters
grid - GridBase.
index - CellIndex.

 

Code -1
    grid.onRowGroupFooterCellClicked = function (grid, index) {
        alert(index.column.index() + "Click the  group footer");
    };
See also
onRowGroupFooterCellDblClicked
GridRow
Examples
Row Grouping