Hi,
is there a way to pass a Array of Arrays in params? I tryed like this:
<% a1 = Array.new %>
<% a2 = Array.new %>
[…]
<% a1 << a2%>
[…]
<%= link_to_remote ‘next’,:url => {:controller =>
‘myController’, :action => ‘myAction’, :params=>{:myArray => a1 }} %>
But i can’t access the nested Array. A Array of Integer or Strings is
accessible. Has someone an advice?
regards