SMART datagrid v.1 > Classes > GridView

Back  Forward

DataLudi.GridView.onExpanded  event

It will be fired after expanding Group Row which has been collapsed.
 Just before being expanded, onExpanding event will be fired. 

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