search for: adicionei

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

Did you mean: adicioneo
2010 Nov 28
6
has_one accepts_nested_attributes_for fields_for NOT WORKING HELP
MODEL class User < ActiveRecord::Base has_one :address, :dependent => :destroy accepts_nested_attributes_for :address end CONTROL def new @user = User.new @user.build_address # Adicionei ... VIEW partial _form .... <% f.fields_for :address do |b| %> # Adicionei <%= b.text_field :city_manual %> # Adicionei <% end %> # Adicionei .... So this is not working... when browser to users/new it do not show the field as sh...