messages.noRows String
(default: "No records to display")
Defines the text of No records to display message when the widget does not show any items.
Example - setting the text of the No records to display button
<div id="treeList"></div>
<script>
$("#treeList").kendoTreeList({
dataSource: [],
columns: [ "name", "age" ],
messages: {
noRows: "No data"
}
});
</script>