我正在使用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
答案 0 :(得分:0)
哦..我明白了!
将sortable_attributes作为数组放在控制器上。
例如:
sortable_attributes :brand_model => ["brands.title", "models.title"]