mdehoog / Semantic-UI-Calendar

Calendar module for Semantic UI
MIT License
805 stars 127 forks source link

[BUG] Calendar won't show in modal #122

Closed Bredo closed 6 years ago

Bredo commented 6 years ago

The table and everything seems to be generated, but it won't show up.

na7r1x commented 6 years ago

Had similar issue. Fixed it by initialising the modal before the calendar, i.e:

$('#mymodal').modal();

...and then:

$('#mycalendar').calendar({youroptionshere});

Hope this helps.

Bredo commented 6 years ago

Perfect, it solved the issue! Thank you!