Disable Scrollview scroll

Is there a way to disable the scroll view scroll behavior, not allowing user to scroll?
I’m using event calendar component inside a full page scroll view, when I swipe through the calendar the whole page will also get scrolled.
Thanks for the support.

Ok, I found a way doing so:
onInit: (event, inst) => {
inst.element.ontouchstart = function(ev) {
ev.stopPropagation();
};
}

1 Like