How to get custom form fields from controller -- a.k.a. how to not use date helpers in form
- by 99miles
I created a form with scaffold that includes two datetime fields.
I replaced them with a datepicker, and now I'm trying to grab the date from within the controller.
Instead of having ruby do all the magic work with the datefields, I instead just have to fields, start_date and stop_date that I want to use, but I can't figure out how to grab them from within my controller. Hints?
Thanks!