Displaying 1 result from an estimated 1 matches for "examd".
Did you mean:
exams
2013 Mar 14
0
[Rails 3.2] accepts_nested_attributes_for and time_select
Hi, I am upgrading a Rails application from Rails 3.1.11 to 3.2.12, but
have a problem with ` accepts_nested_attributes_for` in conjunction with
multipart attributes.
The app is used to manage oral exams, so there is a model `Exam`, which has
many `Examdate`s. When creating an exam, I can also create the examdates,
consisting of a date, a start time and an end time. While the date field is
edited using a text field (with a jQuery date picker), the start and end
times are selected using a time_select form helper.
The examdates are then created u...