messages.nextButtonLabel String(default: "Next")

Defines the aria-label for the next button.

Example - setting the nextButtonLabel

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