Search and Top Navigation
#4357 closed bug (fixed)
Opened March 17, 2009 09:29PM UTC
Closed April 02, 2009 12:50AM UTC
minDate getter acting as setter
Reported by: | caesar2k | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.8 |
Component: | ui.datepicker | Version: | 1.7 |
Keywords: | datepicker setter minDate | Cc: | |
Blocked by: | Blocking: |
Description
The minDate getter ($(".selector").datepicker("option", "minDate")) is acting like a setter.
To reproduce this, I was working comparing two dates with:
(note that $begin and $end are both "$().datepicker" variables)
if (Date.parse($begin.datepicker("getDate")) > $end.datepicker("option","minDate")){
// do stuff
}
Using Date.parse to transform the date to a integer, so they can be compared.
After that comparision, the "$begin" minDate is cleared, like if it was set to 0 for example. I'm trying to make a start day/end day range, but without that functionality, I can't limit or update the datepicker on-the-fly
Actually the code is:
if (Date.parse($begin.datepicker("getDate")) > Date.parse($end.datepicker("option","minDate"))){ // do stuff }
and the "$end" variable minDate that gets cleared, not the "$begin".