In rails 2.3.5 (with active scaffold) all my columns in display were
sorted even though they belonged to a related table. But in Rails 3.2.8
, only columns which belong to the main table are sorted .To sort a
related table column we need to specifically add the line below

columns[:typefromtable2].sort_by :sql => ['name']

I have many columns which are 'related'  , it would be tedious to add
this line in them all

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to