Displaying 1 result from an estimated 1 matches for "potential_buy".
Did you mean:
potential_buyer
2006 Jun 02
1
form_for scope issue
Hi,
I am just ran into the problem that I cannot access helper methods from
within a form_for scope.
I do have something like the following:
<% form_for :potential_buyer, @potential_buyer, :url => { :action =>
"register" } do |f| %>
<%= render(:partial => ''register_form'', :locals => { :f => f } ) %>
<% end %>
-----
I cannot access view helper methods from within the form_for scope and
from within t...