如何对crudify lift“页面”中的视图列表结果进行排序?
我正在使用 CRUDify 对象来做一个简单的管理应用程序。我想对“列表”页面显示的结果进行排序。有没有快速的方法来做到这一点?
谢谢。
I am using a CRUDify object to do a simple admin app. I would like to sort the results that the "list" page displays. Is there a quick way to do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过阅读源代码发现:
如果扩展 CRUDIFY,则可以覆盖 findForListParams 来执行此操作。以下将按描述字段升序排序
I figured out by reading the source:
If you extend CRUDIFY you can override findForListParams to do this. The following will order by the description field ascending
我找到了一种更好的使用 crudify 进行订购的方法,只需添加
:order =>; '名称 ASC'
代码:
ta。
I found a better way to order using crudify, just add
:order => 'name ASC'
code:
ta.