Hello,
We have an implementation of the kendoreact Scheduler in our application.
We use our own popup when a user clicks/selects a scheduler item. This popup contains a close button, which closes the appointment and should deselect the scheduler item. However, I was unable to find a way to get the scheduler item deselected.
The problem with it not being deselected, is that once you close the popup, you cannot open it again until you click another appointment, which our client took issue with.
So far I've tried going through the documentation and through the available hooks. I did find these hooks:
- useSchedulerViewSelectedItemsContext
- useSchedulerViewFocusedItemsContext
However, I was unable to use them since the set function seems to require a synthetic event, which I don't think I have.
I've also found this post, but was unable to apply anything from there with my knowledge: https://www.telerik.com/forums/kendo-scheduler---unselect-a-selected-event-programatically
Is there a way to achieve what I am looking for?