Version

GridUpdatingClientEvents Class Members

The following tables list the members exposed by GridUpdatingClientEvents.

Public Fields
 NameDescription
Public FieldDataDirtyEvent which is raised when autoCommit of grid is not enabled and grid has pending transaction which may fail to be correctly rendered. Application should process that event and it may trigger commit of grid. Return false in order to prevent exception. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid.  
Public FieldEditCellEndedEvent which is raised after end cell editing. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.rowID to get key or index of row. Use ui.columnIndex to get index of column. Use ui.columnKey to get key of column. Use ui.editor to get reference to igEditor. Use ui.value to get value of cell. Use ui.oldValue to get old value. Use ui.update to check if cell was modified and data source will be updated. Use ui.rowAdding to check if that event is raised while new-row-adding.  
Public FieldEditCellEndingEvent which is raised before end cell editing. Return false in order to cancel update of data source. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.rowID to get key or index of row. Use ui.columnIndex to get index of column. Use ui.columnKey to get key of column. Use ui.keepEditing=true in order to keep editing. It has effect only when evt.originalEvent is defined and only when editMode is "cell". Use ui.editor to get reference to igEditor. Use ui.value to get value of cell/editor. That value can be modified and it will be used to update data source. Use ui.oldValue to get old value. Use ui.update to check if value was modified and data source will be updated. Use ui.rowAdding to check if that event is raised while new-row-adding.  
Public FieldEditCellStartedEvent which is raised after start cell editing. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.rowID to get key or index of row. Use ui.columnIndex to get index of column. Use ui.columnKey to get key of column. Use ui.editor to get reference to igEditor. Use ui.value to get value of editor. Use ui.rowAdding to check if that event is raised while new-row-adding.  
Public FieldEditCellStartingEvent which is raised before start cell editing. Return false in order to cancel start editing and do not show editors. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.rowID to get key or index of row. Use ui.columnIndex to get index of column. Use ui.columnKey to get key of column. Use ui.editor to get reference to igEditor. Use ui.value to get or set value of editor. Use ui.rowAdding to check if that event is raised while new-row-adding.  
Public FieldEditRowEndedEvent which is raised after end row editing. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.rowID to get key or index of row. Use ui.update to check if value of any cell was modified and data source will be updated. Use ui.rowAdding to check if that event is raised while new-row-adding. Use ui.values[key] to get value of cell in column with the key. That is available only when ui.update is true. Use ui.oldValues[key] to get old value of cell in column with the key. That is available only when ui.update is true.  
Public FieldEditRowEndingEvent which is raised before end row editing. Return false in order to cancel update of data source. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.rowID to get key or index of row. Use ui.keepEditing=true in order to keep editing. It has effect only when evt.originalEvent is defined. Use ui.update to check if value of any cell was modified and data source will be updated. Use ui.rowAdding to check if that event is raised while new-row-adding. Use ui.values[key] to get value of cell in column with the key. That is available only when ui.update is true. Use ui.oldValues[key] to get old value of cell in column with the key. That is available only when ui.update is true.  
Public FieldEditRowStartedEvent which is raised after start row editing. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.rowID to get key or index of row. Use ui.rowAdding to check if that event is raised while new-row-adding.  
Public FieldEditRowStartingEvent which is raised before start row editing. Return false in order to cancel editing and do not show editors in row. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.rowID to get key or index of row. Use ui.rowAdding to check if that event is raised while new-row-adding.  
Public FieldGeneratePrimaryKeyValueEvent which is raised before adding new row to get value of cell for primaryKey column. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.value to set unique record-key-identifier for new row. It is prefilled with suggested value (defaultValue of column or number of rows in data source).  
Public FieldRowAddedEvent which is raised after adding new row. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.values[key] to get new value of cell in column with the key. Use ui.oldValues[key] to get default value (before editing) of cell in column with the key.  
Public FieldRowAddingEvent which is raised before adding new row. Return false in order to cancel adding new row to data source. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.values[key] to get new value of cell in column with the key. Use ui.oldValues[key] to get default value (before editing) of cell in column with the key.  
Public FieldRowDeletedEvent which is raised after row deleting. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.element to get reference to jquery object which represents TR of row to delete. Use ui.rowID to get key or index of row to delete.  
Public FieldRowDeletingEvent which is raised before row deleting. Return false in order to cancel. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.owner.grid to get reference to igGrid. Use ui.element to get reference to jquery object which represents TR of row to delete. Use ui.rowID to get key or index of row to delete.  
Public FieldRowEditDialogAfterCloseEvent fired after the row edit dialog is closed. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.dialogElement to get reference to row edit dialog DOM element.  
Public FieldRowEditDialogAfterOpenEvent fired after the row edit dialog is opened. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.dialogElement to get reference to row edit dialog DOM element.  
Public FieldRowEditDialogBeforeCloseEvent fired before the row edit dialog is closed. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.dialogElement to get reference to row edit dialog DOM element.  
Public FieldRowEditDialogBeforeOpenEvent fired before the row edit dialog is opened. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.dialogElement to get reference to row edit dialog DOM element.  
Public FieldRowEditDialogContentsRenderedEvent fired after the row edit dialog is rendered. Function takes arguments evt and ui. Use ui.owner to get reference to igGridUpdating. Use ui.dialogElement to get reference to row edit dialog DOM element.  
See Also

View on GitHub