This question is locked. New answers and comments are not allowed.
Hi,
I use the OnEdit event as described in the Client API :
The OnEdit event is raised when the user inserts or edits a grid row. The event argument exposes three fields:
The e.cell allows me to get the cell that triggered the OnEdit, is there a way to know which column triggered the event ?
I use the OnEdit event as described in the Client API :
The OnEdit event is raised when the user inserts or edits a grid row. The event argument exposes three fields:
- dataItem - the JavaScript object to which the editor row is bound to. It is undefined during insertion.
- mode - a string whose value is either "insert" or "edit"
- form - the <form> DOM element which contains all editing components (textboxes, checkboxes, dropdownlists etc.)
- cell - the <td> DOM element which goes in edit mode. This field is available only in cell edit mode.
The e.cell allows me to get the cell that triggered the OnEdit, is there a way to know which column triggered the event ?