Add event on tinymce editor.

How to add event on tinymce editor after integrating with webix.

Hello,
You can get the editor with the help of getEditor
if you need to access the editor immediately after it has been loaded and initialized, you can pass the true parameter to the method as

$$("editor").getEditor(true).then(editor=>{
  ...
  })
})

If passed, the method returns a promise which will be resolved when the editor is rendered.
Please check the sample: https://snippet.webix.com/dy2y1muu