Refresh problem when scheduler is initially hidden

My UI has two tabs where the scheduler is in a tab that is initially hidden.

When I click on the tab that contains the scheduler then the display looks like this:


This seems to be a refresh issue because an action like resizing the browser window or switching to full screen mode makes the proper schedule appear.


The behavior is the same on chrome, firefox, and IE and I do not see any javascript errors in chrome’s developer tool.

Is a way to get the scheduler to refresh properly?

Hello,

Try adding following code to the function which changes tabs (after new tab was displayed):

var state = scheduler.getState(); scheduler.setCurrentView(state.date, state.mode);
This code will simply call refresh for the calendar (same thing is happening then you resize your window).
Best regards,
Ilya

That works - thanks!