Version

GridSelectionClientEvents Class Members

The following tables list the members exposed by GridSelectionClientEvents.

Public Constructors
Public Fields
 NameDescription
Public FieldActiveCellChangedEvent fired after a cell becomes active (focus style applied). Function takes arguments evt and ui. Use ui.owner to get reference to igGridSelection. Use ui.owner.grid to get reference to igGrid. Use ui.cell.element to get reference to cell DOM element. Use ui.cell.columnKey to get column key. Use ui.cell.index to get column index. Use ui.cell.row to get reference to row DOM element. Use ui.cell.rowIndex to get row index.  
Public FieldActiveCellChangingEvent fired before a cell becomes active (focus style applied) (cancellable). Return false in order to cancel active cell changing. Function takes arguments evt and ui. Use ui.owner to get reference to igGridSelection. Use ui.owner.grid to get reference to igGrid. Use ui.cell.element to get reference to cell DOM element. Use ui.cell.columnKey to get column key. Use ui.cell.index to get column index. Use ui.cell.row to get reference to row DOM element. Use ui.cell.rowIndex to get row index.  
Public FieldActiveRowChangedEvent fired after a row becomes active (focus style applied). Function takes arguments evt and ui. Use ui.owner to get reference to igGridSelection. Use ui.owner.grid to get reference to igGrid. Use ui.row.element to get reference to active row DOM element. Use ui.row.index to get row index.  
Public FieldActiveRowChangingEvent fired before a row becomes active (focus style applied) (cancellable). Return false in order to cancel active row changing. Function takes arguments evt and ui. Use ui.owner to get reference to igGridSelection. Use ui.owner.grid to get reference to igGrid. Use ui.row.element to get reference to active row DOM element. Use ui.row.index to get active row index.  
Public FieldCellSelectionChangedEvent fired after cell(s) are selected. Function takes arguments evt and ui. Use ui.owner to get reference to igGridSelection. Use ui.owner.grid to get reference to igGrid. Use ui.cell.element to get reference to cell DOM element. Use ui.cell.columnKey to get reference to column key. Use ui.cell.index to get column index. Use ui.cell.row to get reference to row DOM element. Use ui.cell.rowIndex to get row index. Use ui.selectedCells to get reference to selected cells object array. ui.manual - returns true if internal trigger.  
Public FieldCellSelectionChangingEvent fired before cell(s) are about to be selected (cancellable). Return false in order to cancel cell selection changing. Function takes arguments evt and ui. Use ui.owner to get reference to igGridSelection. Use ui.owner.grid to get reference to igGrid. Use ui.cell.element to get reference to cell DOM element. Use ui.cell.columnKey to get reference to column key. Use ui.cell.index to get column index. Use ui.cell.row to get reference to row DOM element. Use ui.cell.rowIndex to get row index. Use ui.selectedCells to get reference to selected cells object array. ui.manual - returns true if internal trigger.  
Public FieldRowSelectionChangedEvent fired after row(s) are selected. Function takes arguments evt and ui. Use ui.owner to get reference to igGridSelection. Use ui.owner.grid to get reference to igGrid. Use ui.row.element to get reference to row DOM element. Use ui.row.index to get row index. Use ui.selectedRows to get reference to rows object array. ui.manual - returns true if internal trigger.  
Public FieldRowSelectionChangingEvent fired before row(s) are about to be selected (cancellable). Return false in order to cancel selection changing. Function takes arguments evt and ui. Use ui.owner to get reference to igGridSelection. Use ui.owner.grid to get reference to igGrid. Use ui.row.element to get reference to row DOM element. Use ui.row.index to get row index. Use ui.selectedRows to get reference to rows object array. ui.manual - returns true if internal trigger.  
See Also

View on GitHub