SMART datagrid v.1 > Classes > GridView

Back  Forward

DataLudi.GridView.onRowGroupFooterCellDblClicked  event

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

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

 

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