Working with jQuery UI Datepicker for the first time, and I bumped into a little problem:
When I choose a date in the max date/to date textbox, it restricts the dates I can choose in the min date/from date which is good - works as expected... but when I then clear the dates (by clearing the textboxes values), if I go to choose a new min date/from date, the restriction is still applied.
I've been sorting through the documentation and nothing jumped out as a solution. I also wasn't able to find a quick fix on a SO/google search
So my question is, how to I 'reset' the datepicker values as if the page had just loaded again? Should I reinitialize the datepicker, or is there a way to just clear the saved dates without refreshing the page?
http://jsfiddle.net/CoryDanielson/tF5MH/
Solution: (reset the maxDate/minDate restrictions on both datepickers)
var textBoxesFromTo = $('textboxselector1', 'textboxselector2')
textBoxesFromTo.datepicker( "option", "minDate", null ).datepicker( "option", "maxDate", null );
textBoxesFromTo.datepicker( "option", "minDate", null ).datepicker( "option", "maxDate", null );
Note: (this will not work.)
dates[0] & dates[1] does not return a typical jQuery dom object even though dates is a jQuery collection.. it returns the basic javascript dom nodes without the $() wrapper
var dates = $('tbselector1', 'tbselector2').datepicker({ /* initialization code */ });
//dates[0] dates[1] return javascript objects
function resetDates(){ //this will not work
dates.datepicker( "option", "minDate", null ).datepicker( "option", "maxDate", null );
}
Note: (this will work & is good practice)
var dates = $('tbselector1', 'tbselector2');
dates.datepicker({ /* initialization code */ });
function resetDates(){ //this will work
dates.datepicker( "option", "minDate", null ).datepicker( "option", "maxDate", null );
}