The following code works as expected, using the @the_date as the default selected date.
<%= date_select("the_date", "", :default => @the_date ) %>
However, in the case there is no date, it needs to show blanks. The following code displays blanks, but also forces the default selection to be blank even when the date is defined.
<%= date_select("patient_details[birth_date]", "", { :default => @the_date, :include_blank => true } ) %>
How do you set the default selection to a date, and to blank if the date is nil?
Working in Rails 3.07.
Thanks.
date_select(:patient_details, :birth_date, { :default => @the_date, :include_blank => true }), it fits better with the semantics of the call as written in the documentation. Now in terms of your issue, if it actually behaves like you say (can't check just now that I can reproduce), I would consider it is a bug in rails. – Romain Sep 23 '11 at 8:42