Kendo.Mvc.UI.Fluent.CalendarBuilder
Defines the fluent API for configuring the Kendo UI Calendar
Methods
DisableDates(System.DayOfWeek[])
Specifies the disabled dates in the Calendar widget using a function.
Example (ASPX)
<%= Html.Kendo().Calendar()
.Name("calendar")
.DisableDates(DayofWeek.Saturday, DayOfWeek.Sunday)
%>
DisableDates(System.String)
Specifies the disabled dates in the Calendar widget using a function.
Example (ASPX)
<%= Html.Kendo().Calendar()
.Name("calendar")
.DisableDates("disableDates")
%>
FooterId(System.String)
FooterId to be used for rendering the footer of the Calendar.
Example (ASPX)
<%= Html.Kendo().Calendar()
.Name("Calendar")
.FooterId("widgetFooterId")
%>
Footer(System.Boolean)
Enable/disable footer.
Example (ASPX)
<%= Html.Kendo().Calendar()
.Name("Calendar")
.Footer(false)
%>
MonthTemplateId(System.String)
MonthTemplateId to be used for rendering the cells of the Calendar.
Example (ASPX)
<%= Html.Kendo().Calendar()
.Name("Calendar")
.MonthTemplateId("widgetMonthTemplateId")
%>
MonthTemplate(System.String)
Templates for the cells rendered in the "month" view.
Example (ASPX)
<%= Html.Kendo().Calendar()
.Name("Calendar")
.MonthTemplate("#= data.value #")
%>
Min(System.String)
Sets the minimal date, which can be selected in the calendar.
Max(System.String)
Sets the maximal date, which can be selected in the calendar.
Value(System.Nullable<System.DateTime>)
Sets the value of the calendar
Value(System.String)
Sets the value of the calendar
Selection(System.Action<Kendo.Mvc.UI.Fluent.CalendarSelectionSettingsBuilder>)
Configures the selection settings of the calendar.
Parameters
selectionAction System.Action<Kendo.Mvc.UI.Fluent.CalendarSelectionSettingsBuilder>
SelectAction settings, which includes Action name and IEnumerable of DateTime objects.
ComponentType(System.String)
Specifies the component type of the widget. "classic" - Uses the standard rendering of the widget. or "modern" - Uses new rendering with a fresh and modern look and feel..
Parameters
value System.String
The value for ComponentType
Culture(System.String)
Specifies the culture info used by the widget.
Parameters
value System.String
The value for Culture
Dates(System.DateTime[])
Specifies a list of dates, which will be passed to the month template.
Parameters
value System.DateTime[]
The value for Dates
Footer(System.String)
The template which renders the footer. If false, the footer will not be rendered.
Parameters
value System.String
The value for Footer
Format(System.String)
Specifies the format, which is used to parse value set with value() method.
Parameters
value System.String
The value for Format
Max(System.DateTime)
Specifies the maximum date, which the calendar can show.
Parameters
value System.DateTime
The value for Max
Messages(System.Action<Kendo.Mvc.UI.Fluent.CalendarMessagesSettingsBuilder>)
Allows localization of the strings that are used in the widget.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.CalendarMessagesSettingsBuilder>
The configurator for the messages setting.
Min(System.DateTime)
Specifies the minimum date, which the calendar can show.
Parameters
value System.DateTime
The value for Min
Selectable(System.String)
By default user is able to select a single date. The property can also be set to "multiple" in order the multiple date selection to be enabled. More information about multiple selection can be found in the Selection article.
Parameters
value System.String
The value for Selectable
SelectDates(System.DateTime[])
Specifies which dates to be selected when the calendar is initialized.
Parameters
value System.DateTime[]
The value for SelectDates
WeekNumber(System.Boolean)
If set to true a week of the year will be shown on the left side of the calendar.
Parameters
value System.Boolean
The value for WeekNumber
WeekNumber
If set to true a week of the year will be shown on the left side of the calendar.
Value(System.DateTime)
Specifies the selected date.
Parameters
value System.DateTime
The value for Value
Start(Kendo.Mvc.UI.CalendarView)
Parameters
value Kendo.Mvc.UI.CalendarView
The value for Start
Depth(Kendo.Mvc.UI.CalendarView)
Specifies the navigation depth.
Parameters
value Kendo.Mvc.UI.CalendarView
The value for Depth
MonthTemplate(System.Action<Kendo.Mvc.UI.Fluent.CalendarMonthTemplateSettingsBuilder>)
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.CalendarMonthTemplateSettingsBuilder>
The configurator for the monthtemplate setting.
Events(System.Action<Kendo.Mvc.UI.Fluent.CalendarEventBuilder>)
Configures the client-side events.
Parameters
configurator System.Action<Kendo.Mvc.UI.Fluent.CalendarEventBuilder>
The client events action.
Example (ASPX)
@(Html.Kendo().Calendar()
.Name("Calendar")
.Events(events => events
.Change("onChange")
)
)