Ruby on Rails Wednesday, October 31, 2012

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[:columnfromtable2].sort_by :sql => ['name']

I have many columns which are 'related' in many pages , 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+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

No comments:

Post a Comment