Displaying 1 result from an estimated 1 matches for "evaluation_comment".
2006 May 31
1
Creating Multiple Child objects on a single form
..., :value => objective.id %>
<% end %>
<label for="evaluation_date">
Evaluation Date:</label>
<%= date_select ''evaluation'', ''evaldate'', :order => [:day, :month,
:year ] %>
<label for="evaluation_comment">
Comments:</label>
<%= text_area ''evaluation'', ''comment'' %>
This produces a set of ''status'' objects like status1, status2, status3
in params, which I then loop through again in the create function i...