Thank you for contacting Syncfusion support.
We are aware of the reported scrolling issue and the fix will be included in our weekly EJ2 release on February 11, 2019. In the meantime, kindly use the below workaround solution with in PopupOpen event to overcome the issue.
@Html.EJS().Schedule("schedule").Width("100%").Height("550px").PopupOpen("onPopupOpen").Render()
function onPopupOpen() {
var scheduleObj = document.getElementById("schedule").ej2_instances[0];
scheduleObj.quickPopup.quickPopup.actionOnScroll = 'rePosition';
} |
Note: To replicate the scenario we have used the two Schedules in the above sample.
Regards,
Karthigeyan