Page 1 of 1

EventEdit : on Close

Posted: Thu Oct 17, 2019 10:18 am
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

Re: EventEdit : on Close

Posted: Thu Oct 17, 2019 10:42 am
by Maxim Gorkovsky
Hello.
That would be afterEventSave event.

Re: EventEdit : on Close

Posted: Thu Oct 17, 2019 10:45 am
by fract
If I close EventEdit without saving ?

Re: EventEdit : on Close

Posted: Thu Oct 17, 2019 10:58 am
by Maxim Gorkovsky
Then you can try this config:
eventEdit: {
    editorConfig: {
        listeners: {
            hide: () => console.log('close')
        }
    }
}

Re: EventEdit : on Close

Posted: Sat Nov 26, 2022 7:27 am
by choanhemnhe

Thanks Maxim. It works