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 %>
link|improve this question

80% accept rate
feedback

2 Answers

You can do:

<% @the_date = Time.now %>
<%= date_select("my_date", "my_date", :default => @the_date) %>
link|improve this answer
This helped me find what worked. Thank you!!!! <%= date_select("the_date", "", :default => @the_date ) %> – B Seven Sep 23 '11 at 7:59
De nada, you needed the fake "object_name" and "attribute" options in the helper. – miligraf Sep 23 '11 at 13:45
feedback
up vote 1 down vote accepted

Here's what finally worked:

<% @the_date = Date.strptime(@the_date_string, "%Y-%m-%d") %>
<%= date_select("the_date_string", "", :default => @the_date) %>

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.