#2263 closed bug (fixed)
Error in calculate week - UI Datepicker
Reported by: | JesperSJensen | Owned by: | kbwood |
---|---|---|---|
Priority: | major | Milestone: | 1.5 |
Component: | ui.core | Version: | 1.2.2 |
Keywords: | datepicker | Cc: | |
Blocked by: | Blocking: |
Description
Error in calculating week number.
2 weeks number 13 in 2008
zero week number 43 in 2008
and so forth...
Solution:
The following statement in function iso8601Week:
return Math.floor(((checkDate - firstMon) / 86400000) / 7) + 1;
should be
return Math.floor((Math.round((checkDate - firstMon) / 86400000)) / 7) + 1;
regards, Jesper
Change History (7)
comment:1 Changed 15 years ago by
Owner: | changed from paul to iMarc |
---|
comment:2 Changed 15 years ago by
Owner: | changed from iMarc to kbwood |
---|---|
Status: | new → assigned |
comment:3 Changed 15 years ago by
Using http://marcgrabanski.com/code/ui-datepicker/ (Misc.1) March 2008. Operating system: Windows XP Professional Version 2002 Service Pack 2 Browser with error: IE 7.0.5730.11 Firefox 2.0.0.12 Opera 9.23 Not tested: Safari and others...
comment:4 Changed 15 years ago by
UPS
See Ticket #2124 - same story
My hardware is:
Intel(R) Core(TM)2 CPU 6400 @ 2.13GHz 2.13GHz, 2,99GB RAM
comment:5 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:7 Changed 14 years ago by
Milestone: | → 1.5 |
---|
I can't replicate this problem. What browser and operating system are you using?