jqGrid客户端排序
我有一个带有自动加载行的树形网格。目标是在客户端按树列对网格进行排序。
但每次我单击排序列标题时,它都会发出一个用于排序的 Ajax 调用,但我所需要的只是使用本地数据进行就地排序。
我的网格参数是否不正确,或者树不能与树列上的客户端排序一起使用?
当前用于排序的 jqGrid 参数是:
loadonce: true, // to enable sorting on client side
sortable: true //to enable sorting
I have a tree-grid with autoloading rows. The goal is to sort the grid by tree column, right on client side.
But each time I click on sort column header, it issues an Ajax call for sorting, but all I need is on-place sorting using the local data.
Do I have incorrect grid parameters or doesn't tree work with client-side sorting on tree column?
Current jqGrid params for sorting are are:
loadonce: true, // to enable sorting on client side
sortable: true //to enable sorting
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了让客户端排序工作,我需要在加载网格后调用
reloadGrid
:我不必在应用程序中的另一个网格上执行此操作,因为它被配置为使用通过另一个网格检索的数据AJAX 调用,而不是直接由网格检索数据:
To get client-side sorting to work, I needed to call
reloadGrid
after the grid was loaded:I did not have to do this on another grid in my application because it was configured to use data retrieved via another AJAX call, instead of data retrieved directly by the grid:
我在 jqGrid 上使用客户端排序,并在选择列表更改时检索一组新的 json 数据。您需要将 rowTotal 设置为大于或等于返回的行数,然后在重新加载网格之前将数据类型设置为“json”。
I'm using client-side sorting on jqGrid and retrieving a new set of json data when a select list changes. You need to set rowTotal to an amount higher or equal to the number of rows returned, and then set the data type to 'json' just before reloading the grid.