The following tables list the members exposed by GridSelectionClientEvents.
Name | Description | |
---|---|---|
GridSelectionClientEvents Constructor |
Name | Description | |
---|---|---|
ActiveCellChanged | Event 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. | |
ActiveCellChanging | Event 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. | |
ActiveRowChanged | Event 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. | |
ActiveRowChanging | Event 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. | |
CellSelectionChanged | Event 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. | |
CellSelectionChanging | Event 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. | |
RowSelectionChanged | Event 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. | |
RowSelectionChanging | Event 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. |
View on GitHub