Enable Scrolling on Event Preview page?

My event preview has a lot of notes for my staff, but unfortunately for some events it goes too long vertically to be shown all on one screen. Is it possible to enable scrolling on this page? Thank you.

You need to modify dhxscheduler_mobile.js to enable scroll for template. Locate the following occurence (the solution for the latest version of Mobile Scheduler):

{id:“eventTemplate”,view:“template”,template:c.selected_event}

and add scroll here:

{id:“eventTemplate”,view:“template”,template:c.selected_event,scroll:true}

Thank you…worked perfectly.