Displaying 1 result from an estimated 1 matches for "nameactioncontrollerclients".
2006 Apr 23
2
pass the params please
...t][:name]
[:right][:controller]
[:right][:action]
view code is relatively simple pagination stuff...
<%= link_to ''Next page'', {
:page => @right_pages.current.next,
:params => params
} if @right_pages.current.next %>
If I do it like shown above, my params are nameactioncontrollerclients
and that obviously doesn''t work.
If I do it like
:params[:right] => params[:right]
that returns an error
:params => params[:right]
wipes out other params
Suggestions?
Craig