Open Daijobou opened 7 years ago
I found a issue in demo/source.
First:
Result: Selection (ui-state-hover) is missing, but click on a year working.
Second: I use a range with two datapicker, so I edit your demo a little
<input type="text" id="fromDate" value=""> <input type="text" id="toDate" value=""> <script> $(function() { $('#fromDate').datepicker({ onClose: function( selectedDate, inst ) { $('#toDate').datepicker('option', 'minDate', selectedDate); } }); $('#toDate').datepicker({ onClose: function( selectedDate, inst ) { //$('#fromDate').datepicker('option', 'maxDate', selectedDate); } }); }); </script>
With command $('#toDate').datepicker('option', 'minDate', selectedDate) I get now the same issue with months for toDate, when I set first fromDate.
Result: Selection (ui-state-hover) is missing, but click on a month working in demo.
In my project click on items was not have a ui-state-hover redirect to start page, because I use HTML base tag.
I found a issue in demo/source.
First:
Result: Selection (ui-state-hover) is missing, but click on a year working.
Second: I use a range with two datapicker, so I edit your demo a little
With command $('#toDate').datepicker('option', 'minDate', selectedDate) I get now the same issue with months for toDate, when I set first fromDate.
Result: Selection (ui-state-hover) is missing, but click on a month working in demo.
In my project click on items was not have a ui-state-hover redirect to start page, because I use HTML base tag.