Turning off animation

Is there any way to turn off the right to left slide animation when the scheduler is shown?

Hello,

possibly you changed the default view. If you want to show Month or Day view by default without animation, you can try something like so:

//disable animation in multiview $$("scheduler").$$("tabViews").define("animate",false); //open Month view $$("scheduler").$$("buttons").setValue("month"); //enable animation $$("scheduler").$$("tabViews").define("animate",{});