On 7 January 2011 22:20, Raitis <[email protected]> wrote: > Hello, > i have problem iterating through hashes, for example I have two > hashes: > 1. > {:item => {:subitem => {data => "yes", otherdata => "yes"}} > 2. > {:item => {:subitem => [{data => "yes", otherdata => "yes"},{data => > "no", otherdata => "yes"}]} > > I wish with in view iterate through hash and draw table, but using > hash.each function, in first example rails iterate through data and > other data, but in second case through {},{} not data and other data.
In the second case, since subitem is an array, you will have to iterate through the array and for each element iterate through the hash. If you are doing that already show us the code (strip out everything that is not required first so that we can concentrate on the important stuff). Colin -- 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.

