messages.previousButtonLabel String(default: "Previous")

Defines the aria-label for the previous button.

Example - setting the previousButtonLabel

<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 button"
    }
        contentHeight: "100%"
});
</script>
In this article