我需要在 jqgrid 中的 onclickonPgButtons 上保存数据,保存数据后需要转到下一行/上一行。下面的函数是在 Edit Form 的 OnClickPgButton 函数上编写的。
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();
}
}
}
我的问题是保存数据后,我需要在编辑表单中显示下一行/上一行。
提前致谢..