User Interaction
After a user clicks an appointment, the Scheduler displays a tooltip with two buttons. To delete an appointment, a user clicks the button with a bucket icon. Note that the appointment will be deleted from the data source.
If a user deletes a recurring appointment, the Scheduler displays a dialog that allows choosing between deleting the current appointment and deleting the entire series of recurring appointments. If you do not want this dialog to appear, choose the edit mode beforehand using the recurrenceEditMode option.
jQuery
$(function() { $("#schedulerContainer").dxScheduler({ // ... recurrenceEditMode: 'occurrence' // or 'series' | 'dialog' }); });
Angular
<dx-scheduler ... recurrenceEditMode="occurrence"> <!-- or 'series' | 'dialog' --> </dx-scheduler>
import { DxSchedulerModule } from "devextreme-angular"; // ... export class AppComponent { // ... } @NgModule({ imports: [ // ... DxSchedulerModule ], // ... })
To prevent a user from deleting an appointment, set the editing.allowDeleting option to false.
jQuery
$(function() { $("#schedulerContainer").dxScheduler({ // ... editing: { allowDeleting: false } }); });
Angular
<dx-scheduler ... > <dxo-editing [allowDeleting]="false"></dxo-editing> </dx-scheduler>
import { DxSchedulerModule } from "devextreme-angular"; // ... export class AppComponent { // ... } @NgModule({ imports: [ // ... DxSchedulerModule ], // ... })
API
To delete an appointment, call the deleteAppointment(appointment) method. This method deletes an appointment defined by the parameter from the data source.
jQuery
$(function() { var appointments = [{ text: "Website Re-Design Plan", startDate: new Date(2016, 4, 25, 9, 00), endDate: new Date(2016, 4, 25, 9, 30) }, // ... ]; var scheduler = $("#schedulerContainer").dxScheduler({ dataSource: appointments, currentDate: new Date(2016, 4, 25) }).dxScheduler("instance"); $("#deleteButton").dxButton({ text: "Delete", onClick: function () { scheduler.deleteAppointment(appointments[0]); } }); });
Angular
<dx-scheduler [(dataSource)]="appointments" [currentDate]="currentDate"> </dx-scheduler> <dx-button text="Delete" (onClick)="deleteAppointment()"> </dx-button>
import { ..., ViewChild } from "@angular/core"; import { DxButtonModule, DxSchedulerModule, DxSchedulerComponent } from "devextreme-angular"; // ... export class AppComponent { @ViewChild(DxSchedulerComponent) scheduler: DxSchedulerComponent; appointments = [{ text: "Website Re-Design Plan", startDate: new Date(2016, 4, 25, 9, 0), endDate: new Date(2016, 4, 25, 9, 30) }, // ... ]; currentDate = new Date(2016, 4, 25); deleteAppointment() { this.scheduler.instance.deleteAppointment(this.appointments[0]); } } @NgModule({ imports: [ // ... DxSchedulerModule, DxButtonModule ], // ... })
Events
To execute certain commands before or after an appointment was deleted, handle the appointmentDeleting or appointmentDeleted event. If the event handling function is not going to be changed during the lifetime of the widget, assign it to the corresponding onEventName option when you configure the widget.
jQuery
$(function () { $("#schedulerContainer").dxScheduler({ // ... onAppointmentDeleting: function (e) { // Handler of the "appointmentDeleting" event }, onAppointmentDeleted: function (e) { // Handler of the "appointmentDeleted" event } }); });
Angular
<dx-scheduler ... (onAppointmentDeleting)="onAppointmentDeleting($event)" (onAppointmentDeleted)="onAppointmentDeleted($event)"> </dx-scheduler>
import { DxSchedulerModule } from "devextreme-angular"; // ... export class AppComponent { onAppointmentDeleting (e) { // Handler of the "appointmentDeleting" event } onAppointmentDeleted (e) { // Handler of the "appointmentDeleted" event } } @NgModule({ imports: [ // ... DxSchedulerModule ], // ... })
If you are going to change event handlers at runtime, or if you need to attach several handlers to a single event, subscribe to the events using the on(eventName, eventHandler) method. This approach is more typical of jQuery.
var deletedEventHandler1 = function (e) { // First handler of the "deleted" event }; var deletedEventHandler2 = function (e) { // Second handler of the "deleted" event }; $("#schedulerContainer").dxScheduler("instance") .on("appointmentDeleted", deletedEventHandler1) .on("appointmentDeleted", deletedEventHandler2);
See Also
- Handle Events: jQuery | Angular | AngularJS | Knockout | Vue | React | ASP.NET MVC
- Call Methods: jQuery | Angular | AngularJS | Knockout | Vue | React | ASP.NET MVC
- Scheduler Demos
- Scheduler API Reference
If you have technical questions, please create a support ticket in the DevExpress Support Center.