-
Notifications
You must be signed in to change notification settings - Fork 304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] Time-Range rendered incorrectly (because of buggy calendar week calculation) #61
Comments
Hello FunkMonkey, Have you found a solution for that problem? I am experience the same issue and I am trying to find a way to fix it since my calendar is not showing the right data. Thank you, |
Based on FunkMonkey's comment and jquery.ui, I replaced the original function from "jquery.fn.gantt.js" with the following one and it seems to fix the problem:
|
Unfortunately it is not that easy. Test your function for the 31.12.2013. It will say that it is calendar week 53, though it should actually be calendar week 1 of 2014. Thus, for making a correct calculation you may actually need the number of calender weeks of the last year (in case the first days of the new year belong to the last calendar week of the previous year) or the start of the first calendar week in the next year (in case a year's last days belong to the first week of the new year). You can test your code with the calendar weeks from this site: kalenderwoche.net. It is in german, but there is not much to read anyway... p.s. the initial problem for the bug though was the different calendar-week calculation of the columns vs the gantt-lines |
Can I also recommend you guys have a squizz the |
Hmmm, you are right. Can you please take a look at the new function below? I tested with 31.12.2013 and it works ok. function firstMonday(year) {
var dt = new Date(year, 0, 4);
return dt.setDate( dt.getDate() - (dt.getDay() || 7) +1);
}
Date.prototype.getWeekOfYear = function () {
var week1;
var year = this.getFullYear();
if (this >= new Date(year, 11, 29)) {
week1 = firstMonday(year + 1);
if (this < week1) {
week1 = firstMonday(year);
} else {
year++;
}
} else {
week1 = firstMonday(year);
if (this < week1) {
week1 = firstMonday(--year);
}
}
return Math.floor( (((this -week1)/86400000) / 7 + 1) );
}; |
@FunkMonkey , First week of a year is the week has the first Wensday. |
The beginning of a week is cultural. I believe starting a week on a Sunday Sent from my iPad On 17/02/2013, at 9:13 PM, Eric SHI [email protected] wrote: @FunkMonkey https://github.com/FunkMonkey , First week of a year is the week has the first Wensday. — |
Well, if we go for ISO 8601, I'd say the implementation should follow the standard completely, starting the week with Monday. If you want to start the week on Sunday, then you should use the rules of the American system, but you shouldn't just mix those two different ways of calculation and end up with a completely unique calendar system. I agree with @taitems that you should not hardcode. I guess it should be an option which calendar system to use (ISO or American), swapping the functions getWeekOfYear and getStartOfWeek (which returns Sunday or Monday). |
👍 for following standards as much as possible. I'm also inclined to believe (without any proof at all) that most folks who would use a Gantt chart at all would prefer that the week was the ISO week anyway, starting on Monday. Changing the default start-of-week might be startling to some, but I'm sure (again, without evidence) that most folks wouldn't even notice or care. Still, as @taitems said, the first day of the week is cultural, and it's more than just a Sunday vs. Monday debate: http://unicode.org/reports/tr35/tr35-dates.html#Week_Data . As a solution, I would propose adding an optional parameter that takes a number, 0-6, to specify the first day of the week, with the number corresponding to the same day as the (Also-also, adding stuff to the |
The precedent for modifying the I'm +1 for an Int based starting day of week config option. |
- Weeks scale now gives more realistic view of week boundaries - All week calculations now assume ISO weeks by default (options coming soon) - Addresses bug part of #61 - Fixes #73 - Fixes #99 - Closes #112 - Closes #153 - Use `createPseudo` for custom jquery pseudo-selector definitions when available - Other miscellaneous incremental code cleanup and refactoring.
When zoomed to the week scale, the timerange from 01.01.2012 to 31.12.2013 is rendered incorrectly. It will just have the width of the containing text.
Problem is the wrong calculation of calender weeks (f.ex 2014 has a 0 calendar week). also it seems there are different ways the calendar week is calculated in the code instead of just one.
Here is an example gantt:
(jsFiddle)
I vote for using the calendar week definition of ISO 8601
The text was updated successfully, but these errors were encountered: