messages.retryString(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

html
    <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
messages.retry
Not finding the help you need?
Contact Support