Lists all events that can be listened to on the editor or DOM element
You can run code on "EditorEventName" raised by using
editor.event.addEventListener(EditorEventName.CHANGED, (evt) => console.log(evt.detail)) Copy
editor.event.addEventListener(EditorEventName.CHANGED, (evt) => console.log(evt.detail))
event emitted when history has changed i.e. the context of undo-redo
event emitted when clearing is complete
event emitted after the conversion is complete
event emitted when the editor encounters an error
event emitted after the end of the export
event emitted after applying a gesture
event emitted when the server is idle after a job
event emitted after the end of the import
event emitted after full editor initialization
event emitted after
event emitted on click on pointer events
event emitted after selection change
event emitted session opened
event emitted after stroke synchronized with jiix
event emitted after tool change
event emitted after mode change
Remarks
Lists all events that can be listened to on the editor or DOM element
Example
You can run code on "EditorEventName" raised by using