AppointmentRecurrenceFormSettings.Start Property
Specifies the recurrence’s start date.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Property Value
Type | Description |
---|---|
DateTime | The recurrence’s start date. |
Remarks
@Html.DevExpress().Scheduler(
settings => {
settings.Name = "scheduler";
<!-- ... -->
settings.OptionsForms.SetAppointmentFormTemplateContent(c => {
<!-- ... -->
ViewBag.AppointmentRecurrenceFormSettings = CreateAppointmentRecurrenceFormSettings(c);
});
}).Bind(Model.Appointments, Model.Resources).SetErrorText(ViewBag.SchedulerErrorText).GetHtml()
AppointmentRecurrenceFormSettings CreateAppointmentRecurrenceFormSettings(AppointmentFormTemplateContainer container) {
return new AppointmentRecurrenceFormSettings {
Name = "appointmentRecurrenceForm",
Start = container.RecurrenceStart,
<!-- ... -->
};
}
This property corresponds to the RecurrenceInfo.Start property.
See Also