Enabling or Disabling Editor and ContextMenu

8 Nov 20191 minute to read

You can enable or disable the Schedule appointment editor and context menu in schedule using AllowEditing property and its default value is true. If the AllowEditing property value is set as false, you could not create or edit the schedule appointment using editor or context menu.

<Schedule:SfSchedule AllowEditing="False" />
SfSchedule schedule = new SfSchedule();
    schedule.AllowEditing = false;
    this.grid.Children.Add(schedule);