How can I set default order to my embeded objects, like:
class Post
embeds_many :comments, :order => "author"
accepts_nested_attributes_for
end
Now I handle it with passing order straight:
f.fields_for :comments, @post.comments.asc(:author) do |comment|
...
end
:orderfrom 2.1.0 – rubish Aug 14 '11 at 18:462.0.2! But no effect on2.1.7:( – fl00r Aug 14 '11 at 18:49:orderif you haven't already before considering an upgrade. – rubish Aug 14 '11 at 18:54ordermethod. There isasc,order_byanddescmethods – fl00r Aug 14 '11 at 18:57User.all.order([:college_id, Mongo::ASCENDING]).limit(10).count(true)works fine on my system(2.0.1) – rubish Aug 14 '11 at 19:00