I have a grid with 2 editable cells, and can get the value of the current cell with:
var editedValue = this.value;
But how do I get the value of the other cell? Currently I'm using the very ugly:
var otherValue = this.parentNode.nextSibling.firstChild.value;
But this is not safe (and has cross browser issues).
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods says that the getCell
method can not be used when editing a row - so how can you get the value of a cell when it is in edit mode?