SMART datagrid v.1 > Classes > GridView

Back  Forward

DataLudi.GridView.onExpanded  event

在展开已折叠的组行之后,将会触发这个事件。
 在展开之前,将会触发onExpanding事件。 

function onExpanded (grid: GridView, group: GroupRow);
Returns
Void
Parameters
grid - GridView.
group - GroupRow.
Code -1
    grid.onExpanded = function (grid, group) {
        alert('expanded!');
    };
See Also
expand
collapse
GroupRow
onExpanding
onCollapsing
onCollapsed
Examples
RowGrouping