pageable.messagesObject
The text messages that are displayed in the pager. Use this option to customize or localize the pager messages.
Example
<div id="treelist"></div>
<script>
$("#treelist").kendoTreeList({
columns: [
{ field: "Name" },
{ field: "Position" }
],
dataSource: [
{ id: 1, Name: "Daryl Sweeney", Position: "CEO", parentId: null },
{ id: 2, Name: "Guy Wooten", Position: "Chief Technical Officer", parentId: 1 }
],
pageable: {
messages: {
display: "Showing {0} to {1} of {2} entries",
empty: "No data available"
}
}
});
</script>
In this article