Hi,
first of all, I have to say, that I'm not entirely sure this is a bug. Hopefully you guys can reproduce it.
When an event is selected, I'd like to render the events again so I can set a special background to selected
events.
So I have this in the Scheduler's declaration:
EventSelectHandling="CallBack" OnEventSelect="Scheduler_OnEventSelect" AllowMultiSelect="True"
And in code behind I got this handler:
Protected Sub Scheduler_OnEventSelect(sender As Object, e As DayPilotEventArgs)
SetDataSourceAndBind()
Scheduler.Update()
End Sub
When I select 3 events via CTRL after the third selection, the scheduler never returns from it's callback, meaning the loading label is visible and the scheduler is blocked because BlockOnCallBack="True".
Any ideas why this is happening?
Kind regards
Chris