Read-only Events in the React Scheduler
Restrict user interaction with appointments using the readOnly property. When enabled, users can view appointment details and navigate between dates and views, but cannot create, edit, drag, resize, or delete events. By default, readOnly is false.
Make specific events read-only
Restrict editing on individual events based on conditions using the isReadonly field. In this example, past events (those that ended before the current date) are marked read-only, preventing CRUD operations only on those appointments.
Note: By default, the event editor does not open for events with
isReadonlyset totrue.