Closed huanghuan closed 6 years ago
Hey @huanghuan!
After investigation at same issue I have found out the popup
module from semantic ui would destroy himself if the popup not stay on DOM. In that case a mutation observer is triggered and the popup would be destroyed just in time with creation.
I have fixed that issue by disabling the observer.
$('.ui.calendar')
.calendar({
popupOptions: {
observeChanges: false
}
}
);
Maybe that would help you.
@oqq Thank you very much Eric. That worked for me!
@oqq Nice job bro!
Works very well indeed
Thanks! This solves the issue.
Thanks a lot @oqq you saved my sanity! :+1:
Thanks a lot!
omg you saved me @oqq
When I embed a calendar input in a modal dialog, parsing/formatting works but the calendar popup never show up. Am I doing it wrong or it is simply impossible?