0

我需要在 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();
    }
}

}

我的问题是保存数据后,我需要在编辑表单中显示下一行/上一行。

提前致谢..

4

1 回答 1

0

如果我理解正确您的问题,您应该false从回调中返回onclickPgButtons

onclickPgButtons: function (whichbutton, formid, rowid) {
    if (...) { // do some tests
        return false;
    }
}

更新:如果您不需要在提交结果时重新加载网格,您只需使用reloadAfterSubmit: false表单编辑选项(请参阅文档)。

于 2013-01-10T12:04:12.270 回答