On Feb 12, 10:25 pm, Lorenzo Brito Morales <[email protected]>
wrote:
> i have  a link where it has to call a method defin in todoscontroller
> named say_when but show is called
>       <td><%= link_to 'Say when', todo,  :action => :say_when ,
> :remote => true %></td>
>

The problem is that (by definition) this links to the show action for
a todo (the second argument to link_to specifies what the link should
point at) If you want it to link to something else, then, after you've
added it to routes.rb, you can write something like link_to 'Say
when', say_when_todo(todo), ...

Fred

-- 
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