Hi guys, Am trying to submit data through a text_area loaded by a partial form unsuccessfully thus far. Please find my code here <https://gist.github.com/Brayoni/1e3476ee672479dc971c>. Any leads highly appreciated. Thank you.
on 2014-08-04 08:03

on 2014-08-04 09:29

Hi Ian, Check out line 20 of you StudentIndisciplinesController <https://gist.github.com/Brayoni/1e3476ee672479dc97... . You're passing a parameter that is nil according to your log. Also, if you want to have more than one student indiscipline being saved you will need to .save inside the .each loop. You're also unable to save because of the validation error thrown, since you're instantiating the object without a case. Also, I would suggest that you do the things at your controller more restful. Your students action it looks like a create action and your list a index action, unless you have a good reason to do how you're doing. Hope this helps. Best regards, *Marco Antonio Almeida*+45 31 65 28 84 Twitter: @marcoafilho <http://www.twitter.com/marcoafilho> | LinkedIn: marco-antonio-almeida-filho <http://www.linkedin.com/pub/marco-antonio-almeida-... On Mon, Aug 4, 2014 at 6:43 AM, Ian Baraza Brayoni <ibaraza.ib@gmail.com>
on 2014-08-04 21:58

On 4 August 2014 08:28, Marco Antonio Almeida <marcoafilho@gmail.com>
wrote:
> index action, unless you have a good reason to do how you're doing.
Also you might find it beneficial to work right through a good
tutorial such as railstutorial.org (which is free to use online) as
that will show you the basics of Rails.
Colin