vote up 1 vote down star

The datepicker setDate method, as described here is not working as expected.

The datepicker is always taking browsers current date. But I want to
set the current date of my choice.

$(target).datepicker({ 
        dateFormat: $.datepicker.W3C, 
        closeText: 'X' 
}); 
//set the current date 
$(target).datepicker('setDate', currentDateObj); 
//checking the current date. 
alert($(target).datepicker('getDate'));

...where currentDateObj is a javascript date object containing date 1st August 2009.

When I alert the "getDate" it alerts 1st august 2009, but when I open the datepicker it displays the browsers current date ie. 31st august 2009 .

flag

80% accept rate
Is the correct date in the input textbox? The code you have posted looks fine...assuming currentDateObj is correct. – seth Sep 6 at 8:46
Please post the code for how you are setting setting currentDateObj – Jason Berry Sep 6 at 23:31
This is how i am initializing the currentDtaeObj. currentDtaeObj = new Date('August 1, 2009'); – Varun Sep 10 at 14:26

1 Answer

vote up 0 vote down

Have a try on this

$('.selector').datepicker('option', 'defaultDate', YourDateObj);

If this don't work, try to get the date object by js

YourDateObj = new Date ('year','month','day');
link|flag
I tried this. Not working. I tried both the options 1. defaultDate 2. setDate But the I realized that none of these are supposed to set the Today's date. – Varun Sep 29 at 12:05

Your Answer

Get an OpenID
or

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