CalendarMessagesSettingsBuilder
Defines the fluent API for configuring CalendarMessagesSettings
Methods
NavigateTo(System.String)
Allows customization of the "Navigate to " text that would be used for title attribute of the Calendar title in the header. The label is also a button allowing navigation to parent view.
Parameters
value - System.String
The value for NavigateTo
ParentViews(System.Action)
Allows customization of names of the views used in the title attribute of the Calendar title in the header. The label is also a button allowing navigation to parent view.
Parameters
configurator - System.Action<CalendarMessagesParentViewsSettingsBuilder>
The configurator for the parentviews setting.
WeekColumnHeader(System.String)
Allows customization of the week column header text. Set the value to make the widget compliant with web accessibility standards.
Parameters
value - System.String
The value for WeekColumnHeader
Example
@( Html.Kendo().Calendar()
.Name("calendar")
.WeekNumber(true)
.Messages(m => m.WeekColumnHeader("W"))
)