sortable_table插件可以按多列排序吗?

时间:2011-02-02 07:10:58

标签: ruby-on-rails sortable-tables

我正在使用sortable_table plugin在rails app中对html表进行排序。

如果我们想按多列排序,可以使用sortable_table插件吗? 例如:

    select distinct brands.title as brands, models.title as model 
    from brands, models
    where 
    brands.id = models.brand_id
    order by brands.title desc, models.title desc

1 个答案:

答案 0 :(得分:0)

哦..我明白了!

将sortable_attributes作为数组放在控制器上。

例如:

sortable_attributes :brand_model => ["brands.title", "models.title"]