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"))
)