:: Forum >>

How do i get the current row and column in the onCellEditEnded event (that has a handle to the previous cell being edited)

I have an editable column in my grid. If I edit the contents of a cell and click on another cell, then the onCellEditEnded event is fired on the cell being edited previously. However what event is fired after the onCellEditEnded event that will give me the row/column of the cell that was just clicked.
cg
Tuesday, June 17, 2008
You can use currentRow and currentColumn properties -

var row = grid.getCurrentRow();
var col = grid.getCurrentColumn();
Alex (ActiveWidgets)
Saturday, June 21, 2008

This topic is archived.


Back to support forum

Forum search