ExtJS GridPanel 中的服务器端排序

Posted

技术标签:

【中文标题】ExtJS GridPanel 中的服务器端排序【英文标题】:Server Side sorting in an ExtJS GridPanel 【发布时间】:2011-03-24 15:39:21 【问题描述】:

我有一个分页的 GridPanel,但不知道如何添加服务器端排序。是否为 sortChange() 事件添加侦听器?我要覆盖它吗?或者还有其他我应该处理的事件。

任何帮助将不胜感激。

【问题讨论】:

【参考方案1】:

没有。在您的商店的定义中刚刚设置

remoteSort: true, // to enable sorting
sortInfo:  // the default sort
    field: 'someField',
    direction: 'ASC' | 'DESC'

在服务器端,您现在将获得指定排序字段和方向的排序和目录请求参数。单击列时,商店将按照您选择的列和方向进行更新。

【讨论】:

以上是关于ExtJS GridPanel 中的服务器端排序的主要内容,如果未能解决你的问题,请参考以下文章

Extjs GridPanel在有分页的情况下服务端统计合计实现方式

ExtJS GridPanel numberColumn - 排序问题

如何为 ExtJS GridPanel 实现自定义行排序

extjs 有状态网格删除排序

无废话ExtJs 入门教程十七[列表:GridPanel]

如何让 GridPanel 在 ExtJS 4 中显示正确的时间?