Webix ckeditor5 onChange event

Hello i use integrated editor ckeditor5, and for other webix views i use event onchange to save changes. Does something exist for integrated editor view? Or is there a way to know when user lost a focus from ckeditor in order to send request ?

Hi @roma,

Webix simply acts as a container for the actual editor object, meaning you can’t use any of the Webix events. However, it is possible to listen for the CKEditor events specific to its API. You can access the editor object via the getEditor() method and use any method the editor provides - Code Snippet

You might find more useful information regarding editor’s events in their documentation