我们可以在 jqGrid 中进行客户端搜索过滤吗?
正在将数据从 XML 字符串加载到 jqGrid 中,我想在客户端应用搜索过滤器。我该怎么做?
我在 jqGrid 定义之后包含了以下代码,并且工具栏显示了用于使用各种条件进行搜索的所有字段。但是当我输入搜索数据并输入搜索时,它不显示任何记录。我应该怎么办?请帮我!
jQuery("#list").navGrid("#myPager",{search:true, edit:false, del:false, add:false});
Am loading data into a jqGrid from a XML String, on which i want to apply a search filter- client side. how do i do it?
i have included the following code after the jqGrid definition and the tool bar is getting displayed with all the fields for search with various conditions. But when i enter the search data and enter search- its not displaying any records. what should i do? please help me!
jQuery("#list").navGrid("#myPager",{search:true, edit:false, del:false, add:false});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您应该在每列中正确定义 sorttype 属性。如果标准类型不能为您提供所需的结果,您可以将
sorttype
定义为函数。为了能够为您提供更多帮助,需要查看您使用的 jqGrid 定义以及您使用的测试 XML 数据。
Probably you should correctly define sorttype property in every column. If the standard types don't get you the results which you need you can define
sorttype
as function.To be able to help you more one need see the jqGrid definition which you use and the test XML data which you use.