Our powerful JS Calendar component


Post by chabgui@gmail.com »

synchronization does not work. when I create an event or modify it there is no API call :

this.calendar = new Calendar({
            appendTo : 'teamCalendar',
            crudManager : {
                transport : {
                    load : {
                        url : API_URL + '/calendar'
                    },
                    sync : {
                        url : API_URL + '/calendar-sync'
                    }
                },
                autoLoad : true,
                autoSync : true
            }
        });

Post by sergey.maltsev »

Hi!

Thank you for the bug report
This is the issue to fix it
https://github.com/bryntum/support/issues/1428


Post by chabgui@gmail.com »

in the meantime, I added a save button which calls the synchronization :

syncData(): void {
        this.calendar.crudManager.sync();
    }

Post Reply