ariaLabel String (default: null)

Sets an aria-label attribute on the ListView content element (the element with role listbox or list).

Example - disable automatic binding

<div id ="listView"></div>
<script>
  var dataSource = new kendo.data.DataSource({
    data: [ { name: "Jane Doe" }, { name: "John Doe" }]
  });
  $("#listView").kendoListView({
    dataSource: dataSource,
    template: "<div>#:name#</div>",
    ariaLabel: "ListView with names"
  });
</script>
In this article