scrolling does not work on mobile platform (android with a several browsers)

I noticed such problem:
When Webix is included:

page on mobile device can't be scrolled and can't be zoomed. But if I remove webix.js - page works correctly.

I tried to check a several pages (including without any content ), and a several mobile devices - the problem occurred every time.

Example: http://docpart-losev.myjino.ru

Please, could you help me with the problem
Thanks in advance

Add the next line anywhere on the page

webix.Touch.disable();

It will disable any webix related touch event handlers ( webix component will continue to work, but without inner scroll and drag-n-drop handlers on touch devices )

It really solved the problem.) Thank you very much!

When using webix.Touch.disable(); the Scroll works, but the other components stopped working - like DatePicker or a IconButton inside a toolbar…

Any answer to it?

It must affect only scroll events, in case of missed icons problem can be related to the invalid path to the icons font.

Also, you can try to use webix.Touch.limit(true) instead of disable()
In limited mode Webix will attach event handlers inside of webix components but will not break anything outside of components

Thing are working with webix.Touch.limit(true) instead of disable(), thanks!!

I had similar problem - scroll and zoom didn’t work on mobile devices and as soon as I used webix.Touch.limit(true) it resolved the issue. But then another issue occurred - slider controls became totally dead on either Android or iPad.

It looks like on mobile platforms webix.Touch.limit(true) blocks some events necessary for slider operation. Though on PC everything works fine. Any advises on this matter?