AppointmentRecurrenceFormExtension.Bind(RecurrenceInfo) Method
Binds the form to recurrence data.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Parameters
Name | Type | Description |
---|---|---|
recurrenceInfo | RecurrenceInfo | A RecurrenceInfo object containing recurrence data. |
Returns
Type | Description |
---|---|
AppointmentRecurrenceFormExtension | A AppointmentRecurrenceFormExtension object representing the form extension. |
Remarks
Use the Bind method to implement a standalone recurrence form.
@Html.DevExpress().AppointmentRecurrenceForm(
settings => {
settings.Name = "RecurrenceControl";
// ...
}).Bind(Model).GetHtml()
Concept
See Also