Day changed event?

Hello,

I put scheduler into one of tab pages. The problem I have is that everything works fine untill scheduler tab page is hidden and than back shown. In some circumstances the right scrollbar disapears.

I succeed to solve this by calling:
scheduler.set_sizes();
after scheduler tab page is shown.

The last remaining problem is that it works untill user hits button Today or next/previous day. Than this scrollbar disapears again.

Is there a way how to hook to such events? I will add here only this line and everything will be completelly fine!

Thank you for help
Zdenek

Each time, when nav. button clicked, scheduler will call setCurrentView, which will trigger onBeforeViewChange and onViewChange handlers.

Great, it works as needed.

Thank you.