Our pure JavaScript Scheduler component


Post by fract »

Hi,

How to catch when EventEdit is closed ?

is there an event like this one but for close ?
beforeEventEditShow
I'm using Angular 7.

Thank

Post by Maxim Gorkovsky »

Hello.
That would be afterEventSave event.

Post by fract »

If I close EventEdit without saving ?

Post by Maxim Gorkovsky »

Then you can try this config:
eventEdit: {
    editorConfig: {
        listeners: {
            hide: () => console.log('close')
        }
    }
}

Post by choanhemnhe »

Thanks Maxim. It works


Post Reply