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.
You don’t posted more full code of jqGrid which you use, so I can only guess what you do. I suppose that you use editing mode other as cell editing. The callback afterSaveCell can be used only with respect of cell editing and not with inline editing of form editing.