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
As a workaround I tried to open the calendar manually by register a click event on the toggle element and call the open or show method.
That does also not work. There is crazy code in the Picker.Attach.js line 34 which closes the calendar on every click in the page immediately.
var documentEvent = function(event){
if (this.attachedElements.contains(event.target)) return;
this.close();
}.bind(this);
var document = this.picker.getDocument().addEvent('click', documentEvent);
The text was updated successfully, but these errors were encountered:
Toggling doesn't work on click on sub elements.
As a workaround I tried to open the calendar manually by register a click event on the toggle element and call the open or show method.
That does also not work. There is crazy code in the Picker.Attach.js line 34 which closes the calendar on every click in the page immediately.
The text was updated successfully, but these errors were encountered: