0
私はsortable_table pluginを使って、railsアプリケーションでhtmlテーブルをソートしています。sortable_tableプラグインは複数の列で注文できますか?
複数の列で注文したい場合は、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