Disable touch for Carousel, but not slider?

I’ve got a Carousel set up with embedded forms, one of which is a slider. I’d like to disable swiping from form to form on a touch-capable device, which I can do with webix.Touch.disable(), but then the slider doesn’t respond. I’ve tried detaching the “SwipeX”, “SwipeY”, and “onTouchMove” from the carousel to see if I can leave Touch enabled for the slider as well, and detaching those events doesn’t seem to work either.

How can I disable swiping/Touch for Carousel, but leave it for Slider?

There’s no easy way to do such thing, but you can use the multiview control instead of the carousel.

I’ve converted my project to a multiview and things are working as I need. Thanks for the suggestion.