multiTouch Boolean (default: false)

If set to true, the widget will capture and trigger the gesturestart, gesturechange, and gestureend events when the user touches the element with two fingers.

Example

<div id="touch">
    Touch me with two fingers
</div>

<script>
$("#touch").kendoTouch({
    multiTouch: true,
    gesturestart: function (e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
        console.log("User touched the element with two fingers");
    }
});
</script>
In this article