I have a nested form, and for the most part it is working great. The only issue that I have is in displaying validiation errors.
Consider the following object relationship: a Project has_many :tasks, a Task has_many :assignments
if a validation error occurs on an assignment, with <%=project_form.error_messages %>
It displays Task Assignment Due Date is invalid I would rather it just read Due Date is invalid or Jon's Math Homework Due Date is invalid.
Does this support exist? Do I need to roll my own? Anyone have any ideas?
Thanks!
Jonathan