Reputation: 7426
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.
Upvotes: 0
Views: 2996
Reputation: 221997
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.
Upvotes: 1