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.

link|improve this question

80% accept rate
First of all, you should probably write your thing like: 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
feedback

1 Answer

Just, :include_blank => @the_date.nil? , it should do the trick. See example below

date_select(:patient_details, :birth_date, { :default => @the_date, :include_blank=> @the_date.nil? })

link|improve this answer
Just? It worked, but there is no way to choose a blank once the date is entered. How to handle the use case of when the user wants to delete an existing date? – B Seven Sep 23 '11 at 14:55
feedback

Your Answer

 
or
required, but never shown

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