SMART datagrid v1.4 > Classes > GridView

Back  Forward

DataLudi.GridView.onExpanding  event

접혀있던 그룹행이 펼쳐지기 직전에 발생한다.
 명시적으로 false를 리턴하면 펼쳐지지 않는다. 펼쳐진 후에는 onExpanded 이벤트가 발생한다. 

function onExpanding (grid: GridView, group: GroupRow): Boolean;
Returns
Boolean
Parameters
grid - GridView.
group - GroupRow.
Code -1
    grid.onExpanding = function (grid, group) {
        if (group.getChild(0).getData('state') == 'x') {
            return false;
        }
    };
See Also
expand
collapse
GroupRow
onExpanded
onCollapsing
onCollapsed
Examples
RowGrouping