I have a variable @the_date and a date_select form helper without an associated model.
How to use date_select to display the appropriate HTML?
The following does not work:
<%= date_select "the_date", @the_date %>
|
I have a variable How to use The following does not work:
| |||
|
feedback
|
|
You can do:
| |||||
feedback
|
|
Here's what finally worked:
I am storing the date as a string. So, it needs to be converted to a date object before displaying in the HTML form, and converted back to a string before saving in the database. | ||||
|
feedback
|