Hi all, Please help me solve the issue given below.
Scenario: I'm fetching few rows from one table to a variable. Then I want to append that variable with another row of the same table, based on a condition. For that, I used push function with that variable, thinking the return type of Finder is array or hash. But, it gives me Undefined Method error. Code Snippet: #Controller @selected = Project.find(:all, :conditions => "id <= 4") @selected.push Project.find(:all, :conditions =>['id >?', params[:id]]) Please help me tackle this issue. This is for the functionality of drag & drop with two list. It would be very helpful, if you can give me a simple and complete example of the same as well. A prompt reply would be appreciated. Thanks, Tony Puthenveetil -- 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 [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

