CalendarMessagesParentViewsSettingsBuilder
Methods
Month(System.String)
Allows customization of parent view name used in the title attribute of the Calendar title when in Month view.
Parameters
value - System.String
The value for Month
RETURNS
Returns the current CalendarMessagesParentViewsSettingsBuilder instance.
Example
Razor
@(Html.Kendo().Calendar()
.Name("calendar")
.Messages(msg => msg.ParentViews(pv => pv.Month("previous view")))
)
Year(System.String)
Allows customization of parent view name used in the title attribute of the Calendar title when in Year view.
Parameters
value - System.String
The value for Year
RETURNS
Returns the current CalendarMessagesParentViewsSettingsBuilder instance.
Example
Razor
@(Html.Kendo().Calendar()
.Name("calendar")
.Messages(msg => msg.ParentViews(pv => pv.Year("previous view")))
)
Decade(System.String)
Allows customization of parent view name used in the title attribute of the Calendar title when in Decade view.
Parameters
value - System.String
The value for Decade
RETURNS
Returns the current CalendarMessagesParentViewsSettingsBuilder instance.
Example
Razor
@(Html.Kendo().Calendar()
.Name("calendar")
.Messages(msg => msg.ParentViews(pv => pv.Decade("previous view")))
)