I'm using meta-search gem for searching and ordering columns. This code will order records only in one direction:
scope_name.search('meta_sort' => 'name_and_status.desc')
How can I sort columns in different directions? E.g.
scope_name.search('meta_sort' => 'name.asc_and_status.desc')
meta_search only allow one direction of sort. You can just use order after search.
If you use the sort_link in the page, you can specify the order in the page. But I havn't used this.