jqGrid。 onSortComplete 事件是否可用?

发布于 2024-12-11 18:18:09 字数 199 浏览 0 评论 0原文

我想弄清楚,这个插件是否可以使用像“onSortComplete”这样的事件。 jqGrid 已经有事件“onSortCol”,该事件在对某些特定列进行排序之前引发,并且它不适合我。 我已经尝试使用事件“gridComplete”来解决此问题,但该事件几乎在每次网格操作后都会引发。 (例如添加新行)。

有人有解决办法吗?


预先感谢,伊万。

Im trying to figure out, if some event like 'onSortComplete' is available for this plugin. jqGrid already have event 'onSortCol', which is raised BEFORE sorting of some particular column, and it is not suitable for me.
I have already tried to use event 'gridComplete' to work around this, but this event is raised almost on after each action with grid. (e.g. adding new Row).

Does anybody have any solutions?


Thanks in advance, Ivan.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

分分钟 2024-12-18 18:18:09

如果开始排序,网格包含将从服务器或本地数据重新加载。所以排序的结束是在网格被加载并填充之后。所以使用 loadCompletegridComplete 是正确的方法。如果您需要区分排序结束和网格的其他刷新,您只需在 onSortCol 内部设置一个变量,您始终在 loadCompletegridComplete 中清除该变量代码>.这样您就可以在排序结束时执行一些操作。

If sorting is started the grid contain will be reloaded from the server or from the local data. So the end of sorting is after the grid will be loaded and filled. So the usage of loadComplete or gridComplete is the correct way. If you need distinguish between end of sorting and other refreshing of the grid you can just set a variable inside of onSortCol which you clear always in loadComplete or gridComplete. In the way you would be able to do some actions at the end of sorting.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文