AfterExitEditModeHandler
In this event handler, you have reference to the cell that was previously in edit mode through the "cellId" parameter. With this in mind, you can get the column's key and header caption using the following BLOCKED SCRIPT
var cell = igtbl_getCellById(cellId);var col = cell.Column;var colKey = col.Key;var colCaption = col.HeaderText;
thanks alot it is what i was looking for....