[Rails] Re: sorting a has_many collection

2009-02-09 Thread stretch
Bob, You could also render it with jquery or some javascript library that enables you to write the set of reviews once to javascript and present and re-present in multiple ways as needed without more roundtrips to the server. Al On Feb 9, 3:18 am, Juan José Vidal wrote: > You could use named_s

[Rails] Re: sorting a has_many collection

2009-02-09 Thread Juan José Vidal
You could use named_scope to get more complexity. I think that's a possibility. http://www.locomotivation.com/blog/2008/08/25/simplify-activerecord-aggregates-and-other-goodies-via-named-scope.html bingo bob escribió: > That's ideal! thanks. > > Follow up question, what if I want to override th

[Rails] Re: sorting a has_many collection

2009-02-09 Thread bingo bob
That's ideal! thanks. Follow up question, what if I want to override this order from time to time, say on some occasions have the reviews sorted by their last_name column? -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message

[Rails] Re: sorting a has_many collection

2009-02-09 Thread Juan José Vidal
class School < AR has_many :reviews, :order => 'created_at DESC' end class Review < AR belongs_to :school end If you use @school.reviews you'll get the desired effect MaD escribió: > this should work: > @school.reviews.sort_by { |cc| - cc.updated_at.to_i } > > > > --~--~-~-

[Rails] Re: sorting a has_many collection

2009-02-09 Thread MaD
this should work: @school.reviews.sort_by { |cc| - cc.updated_at.to_i } --~--~-~--~~~---~--~~ 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.