useNativeScrolling Boolean(default: false)

If set to true, the view will use the native scrolling available in the current platform. This should help with form issues on some platforms (namely Android and WP8). Native scrolling is only enabled on platforms that support it: iOS > 5+, Android > 3+, WP8. BlackBerry devices do support it, but the native scroller is flaky.

Example

<div data-role="view" data-use-native-scrolling="true">
  <div style="height: 2000px;">Tall element - this view has native scrolling</div>
</div>

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