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

  1. No matter what related record doesn't exist, it always has to show "mail input box".

  2. 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 %>
link|improve this question
Can you add your students_controller.rb? – nmott Feb 18 at 12:38
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.