Full Calendar Initialisation size issues

When toggling Calendar visibility, you have to initiate an updateSize. I use a simple JS function that I call on click of the button that toggles the visibility. Also useful if the calendar is on a modal that isn’t shown when the calendar is rendered.

function resizecalendar(el) {
    dmx.parse(el + '.updateSize()');
}

You could use the onUpdated dynamic event for the variable to trigger it sending the ID of the calendar element as a parameter

1 Like