messages.retry String (default: "Retry")

Defines the text of Retry message for the button which triggers the reloading of the TreeList root-level items.

Example - setting the text of the Retry button

<div id="treeList"></div>
<script>
  $("#treeList").kendoTreeList({
    dataSource: {
      transport: {
        read: {
          url: "https://example.com"
        }
      }
    },
    columns: [
      { field: "FirstName", title: "First Name", width: 250 },
      { field: "LastName", title: "Last Name" },
      { field: "Position" }],
    editable: true,
    messages: {
      retry: "Try again"
    }
  });
</script>
In this article