Adding new scrollable view in scheduler

Hello!

I am using the mobile scheduler and added a new view in it, a htmlform to be more precise.
It’s content is a div with a lot of text in it, and the problem I have is that it won’t allow me to scroll through the text (even though the text exceeds the div’s height).
This happens on mobile devices, haven’t tested it on computer screens, where screen size is a bit bigger.

Try to add to the page ( after webix.js )

<script>
webix.Touch.limit(true);
</script>

Nothing happens. What’s that supposed to do anyway?

Scheduler intercepts normal touch events to control drag-n-drop and custom scrolls. Above line must limit this code to minimal necessary one.

You can use

webix.Touch.disable(true);

It will fully block all custom scrolling and must re-enable native scrolls.

Great, I managed to scroll my htmlform, but when I return on scheduler it’s height is now set to somewhere around 150px.
I switch between the 2 views (scheduler and htmlform using .hide and .show, in case it matters).
No sure, but I am guessing that height is calculated something like document.height- restOfComponents, including those hidden. Can I override that height calculation or set it somehow to appear as fullscreen always?

Hello,

webix.Touch.disable(true); does not fit. This method will block built-in scrolling in List and Week views. Please post example of your form configuration. Is this form inside Scheduler view ?