Hi,
I have a problems with for disable the Schedule Editor.
My Xaml is this:
<sync:SfSchedule ItemsSource="{Binding Path=Entities}"
ScheduleType="Week"
FirstDayOfWeek="Monday"
AllowEditing="False"
>
<sync:SfSchedule.AppointmentMapping>
<sync:ScheduleAppointmentMapping
SubjectMapping="Description"
StartTimeMapping="Start"
EndTimeMapping="End"/>
</sync:SfSchedule.AppointmentMapping>
</sync:SfSchedule>
if I click on empty position the editor doesn't open, but if I click on existing appointment the editor is open in readonly modality.
How Can I do for don't open never the Schedule Editor?
Thank you