[Rails] Re: How to display validation errors in nested form

2010-10-13 Thread binu
I am pretty sure you have have nested forms:) On Oct 12, 5:04 pm, pepe p...@betterrpg.com wrote: You can't have a form inside of another one. Maybe I am misunderstanding? On Oct 12, 4:22 pm, Dean deansam2...@gmail.com wrote: Hi All, I have a nested form OUTER FORM for :doctor  

[Rails] Re: How to display validation errors in nested form

2010-10-13 Thread pepe
I thought he meant he had 2 form tags, one inside of another. On Oct 12, 7:30 pm, binu agarwal.bin...@gmail.com wrote: I am pretty sure you have have nested forms:) On Oct 12, 5:04 pm, pepe p...@betterrpg.com wrote: You can't have a form inside of another one. Maybe I am

[Rails] Re: How to display validation errors in nested form

2010-10-13 Thread pepe
I think you might be missing something in your models. In the Doctor model you should have: has_many :users accepts_nested_attributes_for :users In the User model you should have: belongs_to :doctor I think I've run into the same problem before and it was due to the fact that I was

[Rails] Re: How to display validation errors in nested form

2010-10-12 Thread Dean
Hi All, I have a nested form OUTER FORM for :doctor INNER FORM for :user I am having problem is displaying the validation errors for both doctor and user model. Any idea about how I should be doing this. Thanks alot in advance. On Oct 12, 4:16 pm, Dean deansam2...@gmail.com wrote: Hi All, I

[Rails] Re: How to display validation errors in nested form

2010-10-12 Thread pepe
You can't have a form inside of another one. Maybe I am misunderstanding? On Oct 12, 4:22 pm, Dean deansam2...@gmail.com wrote: Hi All, I have a nested form OUTER FORM for :doctor  INNER FORM for :user I am having problem is displaying the validation errors for both doctor and user model.

[Rails] Re: How to display validation errors in nested form

2010-10-12 Thread Dean
my nested form looks like % form_for :doctor, :url = url do |doc_form| % table tr td %= doc_form.label :Specialized Field: % /td td %= doc_form.text_field :specialize % /td /tr tr td %= doc_form.label :Medical Center Name: % /td td %=

[Rails] Re: How to display validation errors in nested form

2010-10-12 Thread Erol Fornoles
Instead of having to manually create your child user at the controller- level, have a look at this: http://weblog.rubyonrails.org/2009/1/26/nested-model-forms And the API documentation is at: http://api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/ClassMethods.html HTH On Oct 13,

Re: [Rails] Re: How to display validation errors in nested form

2010-10-12 Thread radhames brito
On Tue, Oct 12, 2010 at 5:04 PM, pepe p...@betterrpg.com wrote: You can't have a form inside of another one. Maybe I am misunderstanding? you can have fields_for to nest a form for a child object -- You received this message because you are subscribed to the Google Groups Ruby on Rails: