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 );
}
link|improve this question
feedback

3 Answers

up vote 2 down vote accepted

Try changing the clearing code to:

$('#clearDates').on('click', function(){
    dates.attr('value', '');
    $("input[id$='dpFrom'], input[id$='dpTo']").datepicker( "option", "maxDate", null );
    $("input[id$='dpFrom'], input[id$='dpTo']").datepicker( "option", "minDate", null );
});
link|improve this answer
heh... i was trying this exactly, except i was using dates[0], dates[1] instead of using the selector over again... for some reason the jQuery ui .datepicker() function doesn't return the selected dom nodes... thats kinda inconsistent with jQuery.. oh well. Thanks~ – CoryDanielson Feb 24 at 17:35
correction: dates[0] returns javascript objects even though dates is a jQuery collection. – CoryDanielson Feb 24 at 18:21
feedback

Reset the max date attributes on your datepicker when you click clear.

From jquery website

Get or set the maxDate option, after init.

    //getter
    var maxDate = $( ".selector" ).datepicker( "option", "maxDate" );
    //setter
    $( ".selector" ).datepicker( "option", "maxDate", '+1m +1w' );
link|improve this answer
Yes, you're correct. I marked j08691's as best answer because he gave me some code I could slap into the fiddle that worked. Unfortunately I couldn't mark them both as best :/ – CoryDanielson Feb 24 at 17:40
Yes I know, I was going to explain it a bit better with some code relative to your problem, but he beat me to it. :) – Mark W Feb 24 at 17:43
ahh, such is life on SO... it's the struggle – CoryDanielson Feb 24 at 17:49
feedback

you just need to set the options again to null:

dates.datepicker( "option" , {
    minDate: null,
    maxDate: null} );

I've changed your jsfiddle: http://jsfiddle.net/tF5MH/9/

link|improve this answer
yep, thanks. you're correct. It's funny, this issue even exists on the jQuery UI Datepicker Demo page. jqueryui.com/demos/datepicker/#date-range Set the to date, then empty the textbox and the problem exists – CoryDanielson Feb 24 at 17:51
feedback

Your Answer

 
or
required, but never shown

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