Hey,

my menu is stored in the database like that:
name       path
Home       root_path
Users      users_path

and I create the links with link_to_remote:
<%= link_to_remote navigation.name,
  :url => navigation.target,
  :update => 'contentBody',
  :method => :get %>

The problem is when I load page it looks like:
<a onclick="new Ajax.Updater('contentBody', 'users_path',
{asynchronous:true, evalScripts:true, method:'get'}); return false;"
href="#">Users</a>

Does anyone know how to evaluate that users_path so it's /users instead?
-- 
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to