We have need to make the kendo scheduler visible when the create/edit popup is brought up (by double clicking an event already there, or a free spot on the scheduler), so we resize the scheduler and fit the popup off to the right in the space now open. I have it resizing using the open, close, activate, and deactivate events of the window to control when to resize the scheduler.
However, when it resizes, the events stay the same size and don't move while the days in the week and month view squish with the resize, making all the events out of place until the scheduler refreshes. However, when refreshing after resizing the scheduler, the edit/create popup closes, which throws an exception because the scheduler edit event can no longer find components that were defined in the edit html template...
Is there a good way to resize the scheduler and have events follow the resize on edit/create popup open?
6 Answers, 1 is accepted
The scenarios we would rather recommend using a solution similar to the one described in this help topic and update the events from an external editors form.
Regards,
Plamen
Telerik by Progress
Oops, forum errored when I posted that last message and it posted twice apparently. But I found this!
scheduler.element.width(988);
scheduler.resize(true);
Which resizes the scheduler AND events quite nicely. My question then is... is it possible to attach a transition to this? It would be nice to be able to get the scheduler to slide over instead of just instantly being reduced in width.
The resize method need to refresh (and re-render) the schedule and its content in order to place the events correctly so there is not transition available for this feature.
Regards,
Plamen
Telerik by Progress