Hello,
I am having an issue here when I use the Scheduler: it doesn't call my onPopupOpen binded function to popupOpen when the +x more indicator is taped/clicked with a mobile.
You can reproduce it with fresh example of the scheduler (month view and multiple events a day), a mobile adaptative view from Firefox and :
onPopupOpen = args => {
console.log("click")
}
As well as setting interval to 6 to get the + more indicator.
<ViewDirective option='Month' interval={6} />
It works on desktop view but doesn't on mobile.
Can you help me please ? My final goal is to catch (on mobile) :
if (args.type === "EventContainer")
and get this : args.data.event[i]
Best regards
Ronan