navigatable Boolean
(default: false)
If set to true enables the built-in keyboard navigation
Example - increasing the duration of the snap transition
<div id="scrollView" style="height: 500px;">
<div data-role="page">This page will stretch to fit the entire view height</div>
<div data-role="page">This page will stretch to fit the entire view height</div>
<div data-role="page">This page will stretch to fit the entire view height</div>
</div>
<script>
$("#scrollView").kendoScrollView({
navigatable: true,
contentHeight: "100%"
});
</script>