SMART datagrid v1.4 > 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