我需要在jqgrid和保存數據後保存onclickonPgButtons上的數據它需要轉到下一個/上一行.Below函數寫入OnClickPgButton編輯窗體函數。如何停止從重新加載JqGrid
jQuery("#table").jqGrid('navGrid', '#pager', { search: false, refresh: false, del: false, add: false, cloneToTop: true }, { height: editFormheight, width: editFormwidth, reloadAfterSubmit: true, closeAfterEdit: true, recreateForm: true, cloneToTop: true,
onclickPgButtons: function (whichbutton, formid, rowid) { ModificationDataSave(whichbutton, formid, rowid); $("#edithdtable").stop(); }
});
function ModificationDataSave(whichbutton, formid, rowid) {
if ($("#" + $("#PId").val()).closest("td").text().trim() != $("#Name").val()) {
if (confirm('There is some unsaved data. Would you like to save?')) {
$("#sData").trigger("click");
}
else {
$("#edithdtable").stop();
}
}
}
我的問題是保存數據後,我需要顯示editform的下一個/上一行。
在此先感謝..
你能指定你的問題嗎?你的html是什麼樣的,在哪裏調用的函數,...嘗試添加一個[jsfiddle](http://jsfiddle.net/) –
將數據保存到數據庫後..然後我需要顯示編輯表單在我的頁面上.. @Hans Vn – Ksnrg
也許你可以創建表單,但不要讓它顯示(使用css:display:none;)。顯示它,當你需要它$(「#form#)。show(); –