Skip to main content
A newer version of this page is available. .

AppointmentRecurrenceFormExtension.Bind(RecurrenceInfo) Method

Binds the form to recurrence data.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v20.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public AppointmentRecurrenceFormExtension Bind(
    RecurrenceInfo recurrenceInfo
)

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