messages Object
Defines the messages that are set as aria-lables for the previous and next buttons.
Example
<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,
messages: {
previousButtonLabel: "prev",
nextButtonLabel: "next"
},
contentHeight: "100%"
});
</script>