SMART datagrid v.1 > Classes > ColumnGroup

Back  Forward

DataLudi.ColumnGroup.upper  method

Return Column object on the top of column specified by parameter. If it is the column not being included or displayed in this group, or it is the last column, it will return null

function upper (column: GridColumn): GridColumn;
Returns
GridColumn
Parameters
column - GridColumn. required.
Code -1
    var idx = grid.focusedIndex();
    var col = idx.column();
    if (col && col.group()) {
        col = col.group().upper();
        if (col) {
            grid.setFocusedIndex(grid.getIndex(idx.I(), col);
        }
    }
See Also
right
left
next
prev
lower
Examples
Column Grouping