The React Scheduler allows users to create, update, and delete appointments. The editing state contains information about pending changes made to an appointment and is managed by the EditingState
plugin. Once a user clicks Save or Delete, the plugin fires the onCommitChanges
event and clears the editing state.
The following plugins implement this feature:
The user can edit appointments as follows:
To enable editing, follow the steps below:
EditingState
plugin and handle its onCommitChanges
event to commit edits to the data storage.EditRecurrenceMenu
plugin if recurring appointments are allowed. Otherwise, add the IntegratedEditing
plugin.AppointmentForm
plugin so that users can edit appointment data.In uncontrolled mode, specify the initial editing state using the following EditingState
properties:
defaultEditingAppointment
- the appointment being editeddefaultAddedAppointment
- the appointment being addeddefaultAppointmentChanges
- changes made to the appointmentIn controlled mode, specify the following EditingState
properties in pairs to set a state value and handle the event when it changes:
editingAppointment
and onEditingAppointmentChange
- the appointment being editedaddedAppointment
and onAddedAppointmentChange
- the appointment being addedappointmentChanges
and onAppointmentChangesChange
- changes made to the appointmentYou can also use the onAddedAppointmentChange
event to initialize a new appointment's properties with default values.
Add the DragDropProvider plugin to enable users to drag and drop appointments. Use its allowDrag
and allowResize
properties to disallow dragging and resizing specific appointments. You can also add the EditRecurrenceMenu
plugin to allow users to specify how recurrent appointments are edited.
The DragDropProvider plugin also allows you to customize the appointment being dragged (via the draftAppointmentComponent
property) and its copy displayed in its previous location (via sourceAppointmentComponent
). In addition, it provides the resizeComponent
property that allows you to customize the handles used to resize appointments.
To validate user input or prevent user actions, handle the EditingState
plugin's onCommitChanges
event.
For example, you can copy an appointment if it was drag-and-dropped while a specific key was pressed (the shift
key is used in the demo below). To detect the drop event, check the changed
parameter's value in the commitChanges
handler:
To add and remove editors to/from the appointment form or change its layout, use components the AppointmentForm
plugin provides. They include editors for Boolean values, text, and dates, multi-choice editors, and several layout components.
The following demo shows how to customize the appointment form. A custom TextEditor
with a Label
is added to the form's BasicLayout
and a predefined multilineTextEditor
is removed from it.
To enable the confirmation dialog, add the ConfirmationDialog plugin. The dialog pops up when a user attempts to delete an appointment or discard edits made to it. If the dialog should not appear in these cases, set the ignoreDelete
or ignoreCancel
property to true
.
If users should not edit appointments, import only the AppointmentForm plugin and enable its readOnly
property.
Users can double-click timetable cells to add appointments. You should remove the double-click handler to disable this functionality.
Set the onDoubleClick
property to undefined
for the component that renders timetable cells. It is the timeTableCellComponent for views and the cellComponent for the all-day panel.
Users can delete an appointment using the Delete button on the AppointmentForm or in the AppointmentTooltip. Disable this button on the form and hide it from the tooltip if users should not delete appointments.
To disable the Delete button on the AppointmentForm
, find the commandButton with ID deleteButton
and set its disabled
property to true
.
To hide the Delete button from the AppointmentTooltip
, disable the showDeleteButton
property.
Users can use the AppointmentForm
to update appointments. Switch the AppointmentForm
to read-only mode to disable this functionality. However, now users cannot add or delete appointments either, but these features can be enabled individually.
To enable adding, create a flag that indicates whether an appointment is being added and make the AppointmentForm
read-only depending on this flag.
To enable deleting, find the commandButton with ID deleteButton
on the AppointmentForm
and set its disabled
property to false
.
Users can also update appointments via drag-and-drop. Remove the DragDropProvider (if you use it) to disable this functionality.
The example below demonstrates the described use-cases: