I have a webgrid, when a new is created, there is some validation performed on beforeExitEditModeHandler.
However regardless whether there has been some data entered intot the cell it always returns empty
var cell = igtbl_getCellById(cellID);
var cellValue = cell.getValue();
Does anyone have any pointers
on which client side event you are trying to get the Value?
No that is not it, the id is corrected and if I change it to an already populated row getValue returns the correct value. It only occurs on on a new row that no value is returned.
Maybe your cellID variable is not being set properly? This is how I am doing it and it is working fine
var grid = igtbl_getGridById(gridname);
var cell = grid.Rows.getRow(0).getCell(0);
var cellValue = parseFloat(cell.getValue());