search for: add_owner

Displaying 1 result from an estimated 1 matches for "add_owner".

Did you mean: add_one
2009 Jun 20
0
[Rails 2.3] nested_attributes and validation of nested model
Hi, I''m using nested models to create form in my view. It looks like this: <% form_for :user, :url => {:action => "add_owner" }, :html => { :method => :post } do |u| %> <li><label>Name: </label><%= u.text_field :name %></li> <li><label>Surname: </label><%= u.text_field :surname %></li> <% u.fields_for :agency_owner_attributes do |ao| %> &...