Skip to main content

SchedulerAppointmentOperationEventArgs.Appointment Property

Specifies the target appointment.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v25.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public DxSchedulerAppointmentItem Appointment { get; set; }

Property Value

Type Description
DxSchedulerAppointmentItem

A DxSchedulerAppointmentItem object that stores the target appointment.

Remarks

Use the Appointment property to access the target appointment (that is modified or for which a tooltip/edit form is opened) and change some of its properties (if needed).

The following code snippet changes the added appointment’s Id property and then uses this property’s value to access the appointment after it has been added to the AppointmentsSource object.

<DxScheduler DataStorage="..."
             AppointmentInserting="(e) => AppointmentInserting(e)"
             AppointmentInserted="async (e) => await AppointmentInserted(e)">
    <DxSchedulerDayView ShowWorkTimeOnly="true"></DxSchedulerDayView>
</DxScheduler>


@code {

    void AppointmentInserting(SchedulerAppointmentOperationEventArgs e) {
        e.Appointment.Id = -1;
    }

    async Task AppointmentInserted(DxSchedulerAppointmentItem e) {
        MedicalAppointments insertedItem = (DataStorage.AppointmentsSource as List<MedicalAppointments>).Where(m => m.Id == -1).FirstOrDefault();
        insertedItem.Id = 0;
        await Http.PostJsonAsync<MedicalAppointments>("https://MyWebService.com/api/MedicalAppointments/", insertedItem);
    }
}    

Refer to the following topic for additional information and an example: Managing Appointments in Code.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Appointment property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also