ARIATemplate String(default: "Item #=data.index# of #=data.total#")

Specifies a template is used to populate an aria-live element that anounces which is the current item.

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,
    ARIATemplate: "Item #=data.index#",
        contentHeight: "100%"
});
</script>
In this article