Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
伙计们
目前我发现:jQGrid在编辑后自动重新加载,如何禁用编辑后自动重新加载网格?因为我只想重新加载我更新的字段。
谢谢,
林迪
你应该使用
reloadAfterSubmit: false
表单编辑选项。
在添加新行的情况下,您应该小心使用该选项。在这种情况下,您必须从服务器返回 rowid 并使用afterSubmit它来解码并转发到 jqGrid。请参阅代码示例的答案。
afterSubmit
它应该在保存按钮的单击事件上调用,并且您的页面将使用新值重新加载:
$(document).ready(function(){ var address=$(location).attr("href"); window.location.reload(address); });