I am use Jqgrid. in which i use afterSaveCell Even. But in this even function can not call.so What's Problem Please Tell me. My Code
jQuery("#list").jqGrid(
{
....
editurl:"editMedicineGridData.html",
onCellSelect : function(rowid, iCol, cellcontent) {
..
},
gridComplete: function(){
calculateTotal();
}, afterSaveCell: function (rowid, name, val, iRow, iCol) {
alert("After Save Cell");
calculateTotal();
}
In this Code onCellSelect and gridComplete is Working but afterSaveCell is not working I am use jqgrid 4.4.1 . please help. Thanks in Advance.