New to Telerik UI for ASP.NET MVC? Download free 30-day trial

TreeViewMessagesSettingsBuilder

Methods

Loading(System.String)

The text message shown while the root level items are loading.

Parameters

value - System.String

The value that configures the loading.

Example


             @( Html.Kendo().TreeView()
                        .Name("treeview")
                        .Messages(m => m.Loading("Loading"))
            )

RequestFailed(System.String)

The text message shown when an error occurs while fetching the content.

Parameters

value - System.String

The value that configures the requestfailed.

Example


             @( Html.Kendo().TreeView()
                        .Name("treeview")
                        .Messages(m => m.RequestFailed("RequestFailed"))
            )

Retry(System.String)

The text message shown in the retry button.

Parameters

value - System.String

The value that configures the retry.

Example


             @( Html.Kendo().TreeView()
                        .Name("treeview")
                        .Messages(m => m.Retry("Retry"))
            )

In this article
Not finding the help you need?