SMART datagrid v1.4 > Classes > GridView

Back  Forward

DataLudi.GridView.onRowGroupFooterCellDblClicked  event

그리드행들이 grouping 된 상태에서 GroupFooter들을 더블클릭했을 때 발생된다. 

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

 

Code -1
    grid.onRowGroupFooterCellDblClicked = function (grid, index) {
        alert(index.column.index() + "번째 group footer 더블 클릭");
    };
See also
onRowGroupFooterCellClicked
Examples
Row Grouping