SMART datagrid v.1 > Classes > GridView

Back  Forward

DataLudi.GridView.onRowGroupHeadCellDblClicked  event

当进行行分组时,如果双击添加在列标头左侧的组标题单元格,就会触发这个事件。 

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

 

Code -1
    grid.onRowGroupHeadCellDblClicked = function (grid, level) {
        alert(level + "双击 级别的组标题。");
    };
See also
onRowGroupHeadCellClicked
onRowGroupHeaderClicked
onRowGroupHeaderDblClicked
RowGroup
Examples
行分组