:: Documentation >>

cell edit events

Grid cells trigger editing and validation events -

null

Syntax

obj.onCellEditStarting = function(text, column, row){...};
obj.onCellEditStarted = function(text, column, row){...};
obj.onCellValidating = function(text, column, row){...};
obj.onCellValidated = function(text, column, row){...};
obj.onCellEditEnding = function(text, column, row){...};
obj.onCellEditEnded = function(text, column, row){...};

Parameters

text (string) - the text being edited
column (string) - column index
row (string) - row index

Example

obj.onCellValidated = function(text, column, row){
    alert(text);
}

Remarks

If you cancel (return non-zero value) onCellValidating event - the focus wil stay in the cell and editing will continue.

Comments

Making data validation in server Jaume Catarineu (2)

Documentation:

Recent changes:

2.6.4
2.6.3
2.6.2
2.6.1
2.6.1
2.6.0
2.5.0 - 2.5.6
2.5.6
2.5.0 - 2.5.5
2.5.5