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
- Examples
- RowGrouping