PanelBarMessagesSettingsBuilder
Methods
Loading(System.String)
The text message shown while the root level items are loading.
Parameters
value - System.String
The value for Loading
RETURNS
Returns the current PanelBarMessagesSettingsBuilder instance.
Example
Razor
@(Html.Kendo().PanelBar()
.Name("PanelBar")
.Messages(msg => msg.Loading("loading..."))
)
RequestFailed(System.String)
The text message shown when an error occurs while fetching the content.
Parameters
value - System.String
The value for RequestFailed
RETURNS
Returns the current PanelBarMessagesSettingsBuilder instance.
Example
Razor
@(Html.Kendo().PanelBar()
.Name("PanelBar")
.Messages(msg => msg.RequestFailed("Request failed"))
)
Retry(System.String)
The text message shown in the retry button.
Parameters
value - System.String
The value for Retry
RETURNS
Returns the current PanelBarMessagesSettingsBuilder instance.
Example
Razor
@(Html.Kendo().PanelBar()
.Name("PanelBar")
.Messages(msg => msg.Retry("Try again"))
)