Custom Query (18300 matches)
Results (193 - 195 of 18300)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#5315 | fixed | Problem with dojo.date.add when adding days | ||
Description |
It boils down to using setUTC/getUTC for adding any interval greater than an hour. |
|||
#5335 | fixed | Can't overshoot on an easing function. | ||
Description |
Line 239 in _base/fx.js looks like this: if(step < 1){ The problem is that with the code the way it is, you cannot do an overshoot with an easing function. We should really be checking the animation's _percent property instead, since that will always be between 0 and 1. |
|||
#5440 | worksforme | dojo.date.add() calculations don't respect time zones properly | ||
Description |
I encounter a strange problem. Having _Calendar widget for December 2007 printed out, once I click on 1-DEC-2007, both 1-DEC-2007 and 1-JAN-2008 become selected (dijitCalendarSelectedDate).
Then let's assume
Which seems wrong to me. In consequence when printing first 5 days for JAN-2008 it iterates between 1-DEC-2007 and 5-DEC-2007, because date.setDate(1) returns 1-DEC-2007, not 1-JAN-2008. (NB: for previous month dates it iterates over OCT-2007, not NOV-2007)
If you need some more information, please let me know. |