Our pure JavaScript Scheduler component


Post by foursite »

Hi,

Is there any flag which i can enable to see all the events scheduler fires whenever i interact with any ui changes? for example when changing zoomlevel on timeAxisHeaderMenu what event it fires which ic an capture to persist zoom on next page load?


Post by Animal »

Yes, there are a lot of events at https://www.bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#events to wade through!

But eventually, you'll find this: https://www.bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineViewPresets#event-presetChange

If you really want to see all events, add a listener for catchAll. But there are too many. Every mousemove will fire an event.


Post by foursite »

wonderfull thank you. :)

i hope its not too much to ask , on your example page at https://bryntum.com/products/schedulerpro/examples/drag-unplanned-tasks/ i can see we have one leve of nesting(Tasks for Doctor->Brain transplant) can we have 2 level of nesting ? like (Tasks for Doctor->Brain transplant-> another level)


Post by mats »

Yes, just switch to using a TreeGrid instead of a grouped Grid (supports just 1 level).

https://bryntum.com/products/grid/examples/tree/


Post Reply