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 问题吗?我实现了jqgrid分页功能,现在网格数据有两个页面,但我尝试从所有页面搜索结果(跨页面)?谢谢!jqgrid似乎只支持从当前页面搜索结果,有人遇到过这种情况吗?
如果您的数据不包含太多行,那么您可以设置
loadonce: true
使用此属性,所有数据都会从数据源加载一次,因此搜索适用于所有页面。
否则,您的 AJAX 服务负责提供搜索到的数据。