Data not refreshinh after save

I’ve followed the documentation and examples for room booking and MVCFormInLightbox.
Everything is working apart from after a new event is saved (or an existing event is altered) the new entry does not show in the scheduler.
The entry is being made in the database and if you refresh the page it shows up fine.

Am I missing something to get the data to refresh on Save.

Any help greatly appreciated.

Ian

You must load data using the scheduler.load method and before call this method you must use scheduler.clearall() to remove all the eventboxes in the scheduler.

scheduler.load(‘controllermethod’,‘json’);

– Happy Coding :slight_smile: