useNative Boolean (default: false)

If set to true, the scroller 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 > 4, Android > 2, WP8. BlackBerry devices do support it, but the native scroller is flaky.

Example

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

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