When you submit a date, it re-loads the page with the same date select
box, but displays todays date, no matter what you submitted before.
How can I get it to re load with the submitted date.
check out date_select in the Rails Framework Documentation. The first
argument is object and the second one is method. If you have defined an
instance variable object which matches what you put in the date_select
argument for object which has a method matching what you put for method
then the date_select parts will take that value when the page loads.
Create a sample rails app and check out the edit page. It uses dates
there and gets them to autopopulate.