I want to use the jQuery Datepicker in my Rails app, but I've never developed in Java, so I'm unsure how to use the options. I have four date fields:
- event.valid_from
- event.valid_to
- restricted_date.valid_from
- restricted_date.valid_to
The restricted dates are to create a limited range that the user can pick from to have an event. Therefore, I want to restrict the dates, like this:
restricted_date.valid_from <= event.valid_to (and from) <= restricted_date.valid_to
Currently I have:
jQuery('#event_valid_to').datepicker({
dateFormat: 'yy/mm/dd',
minDate: "<%= @event.restricted.valid_from %>",
maxDate: "<%= @event.restricted.valid_to %>"
});
which turns to:
jQuery('#event_valid_to').datepicker({
dateFormat: 'yy/mm/dd',
minDate: "2012-02-20",
maxDate: "2012-01-31"
});
However, when I click the field, the calendar pops up in August 2017 with all of the dates greyed out (and I can't scroll to other months). The field is also open for editing.
field code
<%= f.text_field :valid_to, :value=>@event.restricted.valid_to.strftime("%m/%d/%Y") %>
What I want to do:
- restrict the date like this example (http://jqueryui.com/demos/datepicker/#min-max), with the user unable to manually type in a date
- have the calendar start at today's date instead of August 2017
Thank you in advance for any help you can provide!
