In the case(Form view) written below, It shows the "mail input box" only when related record exists in Contact table. It also gets error at the "Show" page when related record doesn't exist.
I'd like to achieve these listed below
No matter what related record doesn't exist, it always has to show "mail input box".
If I type something into "mail input box" and hit submit, I'd like to make new record in the associated table. if related record exists, I want to update data.
Thanks!!
---------------------------------------------------
Model
Student
has_one :contact
accepts_nested_attributes_for :contact
Contact
belongs_to :student, :class_name => "Student"
accepts_nested_attributes_for :student
--------------------------------------------------
View
<%= form_for(@student) do |f| %>
<div class="field">
<%= f.label :name %><br />
<%= f.number_field :name %>
</div>
<div class="field">
<%= f.label :mail %><br />
<%= f.fields_for :contact do |contact| %>
<%= contact.text_field :mail %>
<% end %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
students_controller.rb? – nmott Feb 18 at 12:38