SMART datagrid v.1 > Classes > GridColumn
DataLudi.GridColumn.grid property
The object of Grid of including this column.
If not being included in Grid, it will return null.
- Getter
- function grid(): GridBase
Code -1
var grid = column.grid();
grid && grid.setFocusedIndex(grid.getIndex(0, column));
- Note
- It does not mean that column object itself maintains the reference about grid.
- Since it chases parent group to return the value being referred by root column group within grid, when calling in large quantities, it should be cached in regional variable, etc.
- See Also
- GridBase
- GridBase.setFocusedIndex
- CellIndex
- Examples
- Hello Grid