Issue 710: Google Chrome Rendering Bug
Status:  Done
Owner: ----
Closed:  Nov 2010
Reported by grisha87, Nov 14, 2010
Sometimes the Calendar fails to render.

It was configured like that:

timeFormat: 'H:mm',
axisFormat: 'H:mm',
minTime: 7,
weekends: false,
firstDay: 1,
header: {
	left: 'prev,next today',
	center: 'title',
	right: 'month,agendaWeek,agendaDay'
},
editable: false

When I zoom the window (using CTRL + scrolling the mouse) after few steps of the zoom it renders the calendar normal.

I've attached a screenshot of the issue to this report, so you can see what I mean.

For me it looks like the calendar is being drawn before the dimensions of DOM elements are calculated, so it ends with 'imaginary' values.
chrome_bug.jpg
40.0 KB   View   Download
Nov 21, 2010
Project Member #1 adamrs...@gmail.com
fullcalendar is probably being rendered when other things on the page haven't finalized their dimensions. call the render method (http://arshaw.com/fullcalendar/docs/display/render/) when you know the page's layout is stable, or just wait to initialize fullcalendar after everything is stable

(maybe you are dynamically loading a CSS file or something? make sure all your CSS <link> declarations are at the top of your <head> before any js)
Status: Done