zoom Boolean (default: false)

If set to true, the user can zoom in/out the contents of the widget using the pinch/zoom gesture.

The configuration option does not have any effect if the useNative option is set to true.

    <div data-role="view">
        foo
      <div data-role="scroller" style="width: 200px; height: 200px" data-zoom="true">
        <div style="width: 500px; height: 500px">Zoomable Content</div>
      </div>
        bar
     </div>


    <script>
    new kendo.mobile.Application();
    </script>
In this article