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.
我有一个分页的 GridPanel,但不知道如何添加服务器端排序。是否为 sortChange() 事件添加侦听器?我要覆盖它吗?或者还有其他我应该处理的事件。
任何帮助,将不胜感激。
不,在您商店的定义中刚刚设置
remoteSort: true, // to enable sorting sortInfo: { // the default sort field: 'someField', direction: 'ASC' | 'DESC' }
在服务器端,您现在将获得指定排序字段和方向的排序和目录请求参数。单击列时,商店将按照您选择的列和方向进行更新。