Hi
another quick question.
i have a relationship “areas has_many elements” (elements acts_as_list)
i want to retrive those elements ordered by element.position
elements = area.elements
elements.each do |element|
is there a quick and elegent way to it (like area.elements.orderby)
or is an SQL query a must.
like :
Element.find(:all, condition => …, order => …