Hi,
well, it was working fine with XF3.4, so the nuget packages are installed in the projects.
I'm not quite sure if the change XF3.4->XF3.6 or the last update of the SfScheduler nuget packages
caused the problem.
What I found is that my DragDropSettings section is like this:
<xForms:SfSchedule.DragDropSettings>
<xForms:DragDropSettings
AllowNavigate="true"
AllowScroll="true"
ShowTimeIndicator="true">
xForms:DragDropSettings>
xForms:SfSchedule.DragDropSettings>
Remember, this was working like a charm before.
But it has to be:
<xForms:SfSchedule.DragDropSettings>
<xForms:DragDropSettings
AllowNavigate="true"
AllowScroll="true"
ShowTimeIndicator="true">
<xForms:DragDropSettings.TimeIndicatorStyle>
<xForms:TimeIndicatorStyle TextColor="Red" TextSize="13" TextFormat="hh:mm">
xForms:TimeIndicatorStyle>
xForms:DragDropSettings.TimeIndicatorStyle>
xForms:DragDropSettings>
xForms:SfSchedule.DragDropSettings>
Without the TimeIndicatorStyle it's not working and an exception is thrown when loading the page.
For me it's solved, maybe this should be examined from your side.
Regards