0
我使用Jqgrid。 其中我使用afterSaveCell Even。但在這個偶數函數中不能調用。請問什麼問題請告訴我。 我的代碼在jqGrid中使用afterSaveCell
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();
}
在此代碼onCellSelect和gridComplete是工作,但afterSaveCell不工作 我使用的jqGrid 4.4.1。 請幫忙。 在此先感謝。
我使用內聯函數。我在其中更改數量保存它們,現在我想按照數量更改金額更改,並且我還希望在頁腳中使用總金額,以便如何實現。 –
@AshuMehta:您可以使用內嵌編輯函數的'aftersavefunc'回調。如果你使用'inlineNav',你應該在'editParams'和'addParams'的addRowParams'內放置'aftersavefunc'回調。 – Oleg
示例演示請。 –