You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On desktop.
Goto demo/CalExampleCustomEventClick.htm
Goto the WeekView.
Click on an All Day event. The custom event click is not fired. The event is 'selected' because it remains the 'cEditingEvent' css class. Click on another All Day event, the custom click is now fired. But the first one still not works.
I believe there is an easy fix. Change the line:
to._changeViewPropertiesWhileEditing("BEFORE", sEventId);
in _setAllDayEventBeingEditedInDetailView
into: if($.CalenStyle.extra.bTouchDevice) to._changeViewPropertiesWhileEditing("BEFORE", sEventId);
same as this bTouchDevice check is done for the single events in _setSmallEventBeingEditedInDetailView.
This should solve the problem.
The text was updated successfully, but these errors were encountered:
How to reproduce this bug:
On desktop.
Goto demo/CalExampleCustomEventClick.htm
Goto the WeekView.
Click on an All Day event. The custom event click is not fired. The event is 'selected' because it remains the 'cEditingEvent' css class. Click on another All Day event, the custom click is now fired. But the first one still not works.
I believe there is an easy fix. Change the line:
to._changeViewPropertiesWhileEditing("BEFORE", sEventId);
in _setAllDayEventBeingEditedInDetailView
into:
if($.CalenStyle.extra.bTouchDevice) to._changeViewPropertiesWhileEditing("BEFORE", sEventId);
same as this bTouchDevice check is done for the single events in _setSmallEventBeingEditedInDetailView.
This should solve the problem.
The text was updated successfully, but these errors were encountered: