Kendo.Mvc.UI.Fluent.WindowTitleSettingsBuilder
Defines the fluent API for configuring the Kendo Window Title settings
Methods
Enabled(System.Boolean)
Enables or disables the title.
Example (ASPX)
<%= Html.Kendo().Window()
.Name("Window")
.Title(x => x.Enabled(false))
%>
Encoded(System.Boolean)
Enables or disables the encoding of the title.
Example (ASPX)
<%= Html.Kendo().Window()
.Name("Window")
.Title(x => x.Encoded(false).Text("test"))
%>
Text(System.String)
Sets the text of the title
Example (ASPX)
<%= Html.Kendo().Window()
.Name("Window")
.Title(x => x.Text("test"))
%>