SMART datagrid v.1 >  Classes >  GridView
DataLudi.GridView.onCollapsed  event
広げられていた グループ行が畳まれた後発生する。 畳まれる直前にはonCollapsingイベントが発生する。 
function onCollapsed (grid: GridView, group: GroupRow);
- Returns
 - Void
 
- Parameters
 - grid - GridView.
 - group - GroupRow.
 
Code -1
    grid.onCollapsed = function (grid, group) {
        alert('collapsed!');
    };
- See Also
 - expand
 - collapse
 - GroupRow
 - onCollapsing
 - onExpanding
 - onExpanded