Colin, that's means I always need to check hash value data and
transform it or use another each cycle?

Currently in view I have simple .each iteration:
http://pastie.org/1439787

This will work great for second hash, when drawing table.

Raitis

On Jan 8, 12:07 pm, Colin Law <[email protected]> wrote:
> 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.

Reply via email to