| Issue 737: | Calendar does not render in a hidden div | |
| 3 people starred this issue and may be notified of changes. | Back to list |
I'd like to load a calendar in a hidden div. But it seems it does not render. The purpose is to prefetch events and the to feed other calendars by .fullCalendar('clientEvents').
$('#hidden').fullCalendar({
...
loading: function(isLoading, view){
if(isLoading) {
// ...
}
else{
init_other_cals();
}
}
});
... init_others() is not called. Do I miss something?
Nov 30, 2010
Project Member
#1
althaus.it
Dec 18, 2010
you'll need to call `render` after you know the calendar is visible: http://arshaw.com/fullcalendar/docs/display/render/
Status:
Done
Nov 19, 2014
This is super old but thanks for the answer, I was going crazy trying to figure out what was wrong :) Would be nice if it rendered without having to do the extra line of code, but this will work. |
|
| ► Sign in to add a comment |