I'm using sortable_table plugin for sorting html table in rails app.

If we want to order by multiple columns, can sortable_table plugin do it ? Example:

    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
link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Oh.. I get it!

Just put sortable_attributes on controller as array.

For example:

sortable_attributes :brand_model => ["brands.title", "models.title"]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.