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.
这个问题可能是一个重复的问题,但我将其添加为一个新问题,因为类似问题中提到的所有答案都不适合我。
jqGridObj.setGridParam({ datatype: "json"}).trigger("reloadGrid");
在这行执行中,我观察浏览器控制台,它确实正确地进行了新的 json 调用,并且这个新调用的响应也确实包含来自服务器的最新数据。但是,有些新记录没有填充到网格中。我需要手动刷新页面才能看到新记录。
我用试试这个:
$("#NAME_GRID").trigger("reloadGrid");
请参阅包含示例的链接,其中包含 jqgrid 调用重新加载的代码。