I'm trying to create a zooming navigation for scheduler as in this tutorial http://www.daypilot.org/demo/Scheduler/Zooming.aspx but even in the tutorial I can't zoom in more than one level. Looking at the code, I should be able to zoom in from year to month to week to day levels and back.
It seems that when CellGroupBy property is changed it is only partially noticed by the component. For example, when the property is first set to Month in PageLoad, it correctly displays Months in the topmost header. But, when I click the header to zoom in, the property is changed to Week in adjustCellLayout() (called by DayPilotScheduler1_Command()) and in the debugger I can see that it is changed correctly, but in BeforeTimeHeaderRender handler e.InnerHTML is still a month name instead of a week number even though the CellGroupBy property is Week.
I tried changing the DPS.Update() call in DPS_Command handler to UpdateType.Full but it had no effect.