如何对crudify lift“页面”中的视图列表结果进行排序?

发布于 2024-11-24 09:46:01 字数 83 浏览 1 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

渔村楼浪 2024-12-01 09:46:01

我通过阅读源代码发现:

如果扩展 CRUDIFY,则可以覆盖 findForListParams 来执行此操作。以下将按描述字段升序排序

override def findForListParams = {
   List(OrderBy(description, Ascending))
}

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

override def findForListParams = {
   List(OrderBy(description, Ascending))
}
爱殇璃 2024-12-01 09:46:01

我找到了一种更好的使用 crudify 进行订购的方法,只需添加 :order =>; '名称 ASC'

代码:

crudify :'refinery/glossaries/glossary',
            :title_attribute => 'name', :xhr_paging => true, :order => 'name ASC'

ta。

I found a better way to order using crudify, just add :order => 'name ASC'

code:

crudify :'refinery/glossaries/glossary',
            :title_attribute => 'name', :xhr_paging => true, :order => 'name ASC'

ta.

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