Handling touchmove events inside a webix template.

I’ve created a canvas element and placed it inside a webix template.

I cannot handle touchmove events for that canvas element, as it appears that webix is intercepting that event handling. I would also like to disable scrolling while the user is touching my canvas element.

How do I achieve this in Webix?

Thanks!

Ah, I’ve figured it out. I accidentally had a webix.Touch.disable() placed in my source somewhere.

For anyone interested, you can listen to events by doing something like:

myView.attachEvent(“onTouchMove”, function(start_context, current_context) {
// Do stuff here.
});