Issue 511: Agenda's columns misaligned on wide screens
Status:  Released
Owner: ----
Closed:  Aug 2014
Reported by ward.dav...@gmail.com, Jun 8, 2010
In very high resolution or wide-screen monitors, the positioning/rendering logic breaks slightly for agendaWeek view.

Having looked at the logic, I think its caused by a rounding issue.  For the smaller resolutions, it's not as important to cut off a tenth or so of a pixel but for the higher resolutions the remainder increases to a fifth or higher.

Attached is a screenshot

Also, I went ahead and for my local copy changed line 2024
- colWidth = Math.floor((clientWidth - axisWidth) / colCnt);
+ colWidth = (clientWidth - axisWidth) / colCnt;

I am guessing that it was originally being rounded down to be compatible with MSIE or some other browser?

agendaWeekofByFewpx.png
18.9 KB   View   Download
Jun 16, 2010
Project Member #1 adamrs...@gmail.com
yeah this could be a rounding error, or it could just be the crazy way tables distribute width. will look into it. thanks

what browser is this screenshot from?
Summary: agenda's misaligned columns on wide screens
Status: Accepted
Labels: Type-Defect
Jun 16, 2010
#2 ward.dav...@gmail.com
Google Chrome with various versions/workstations but all on high resolution displays.
Aug 13, 2013
Project Member #3 adamrs...@gmail.com
(No comment was entered for this change.)
Summary: Agenda's columns misaligned on wide screens (was: agenda's misaligned columns on wide screens)
Labels: -Type-Defect Type-Bug
Jun 15, 2014
Project Member #4 adamrs...@gmail.com
(No comment was entered for this change.)
Labels: milestone-skeleton
Jul 23, 2014
Project Member #5 adamrs...@gmail.com
This is fixed in v2.1 (beta)
http://blog.arshaw.com/1/post/2014/07/fullcalendar-210-beta.html

I would really appreciate if you could verify this. Thanks a lot!
Aug 14, 2014
Project Member #6 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Implemented
Aug 26, 2014
Project Member #7 adamrs...@gmail.com
This issue has been resolved with the official release of v2.1.0:
http://blog.arshaw.com/1/post/2014/08/fullcalendar-210-released.html

Please post any follow-up bug reports or feature requests as separate issues. Thanks.
Status: Released