AfterExitEditModeHandler
alert(rowCount);
var total = 0;
var checked = eval(gd.Rows.getRow(0).getCell(4).getValue()); -> giving error here .......object is null
i am trying to get sum of column four using this loop it is just giving me the SUM of above rows i want to include the SUM of current row also...
this loop is being used in after
of that cell can any one guide what should i do???
var rowCount = grid.Rows.length;
total = total + grid.Rows.getRow(i).getCell(4).getValue();
}