Dojo 中的数据存储排序和增强型数据网格
我需要对数据存储进行排序。当我添加 sortInfo 时,数据存储第一次进行排序。当我添加另一个项目时,它会作为最后一个元素。因此数据存储不是按顺序排列的。
即使我更改需要排序的列中单元格的值,顺序也会受到干扰。
如何保持dojo中数据存储的排序?
I need to keep the datastore sorted. When I add sortInfo datastore gets sorted for the first time. When I add another item it goes as last element. Therefore datastore is not in sorted order.
Even if i change the value of the cell in column that needs to be sorted also the order gets disturbed.
How to keep the datastore in dojo be sorted?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在商店上调用 save() 来提交更改,以便反映排序顺序。
You'd need to call a save() on the store to commit your changes for your sort order to be reflected.