scroll bar is not displayed for the scheduler

I have got the scheduler control in an accordion 'Day' as the default view
and I'm displaying grid or scheduler based on the dropdown selection from the user
When the page loads the scheduler doesn't display the scroll bar to go through the time if I click on any other date from the calendar or go to other views like 'timelineday' and come back to 'day' view I can see the scrollbar.
How can I fix this to always display the scrollbar?

1 Reply

VM Vengatesh Maniraj Syncfusion Team March 30, 2020 06:47 AM UTC

Hi Swajanya, 

Syncfusion Greetings. 

We recommend you refresh the scheduler once it is rendered using the code below to resolve the scheduler not loading the scroller on initial load. 

    //Scheduler Instance 
    var scheduleObj = document.getElementsByClassName('e-schedule')[0].ej2_instances[0]; 
    // Refresh the scheduler 
    scheduleObj.refresh(); 


Kindly try the above solution, If you have any concerns please revert us back for further assistance. 

Regards, 
Vengatesh

Loader.
Up arrow icon