Hello,
We use oxygen-18.1.0.0.jar, and we need to know when a document is changed (add/delete/update text or element, ...) in order to update our customize toolbar.
I try to override the method "editingOccured()" from the "InplaceEditingListener" interface but when I modify the document in the author page this method is not called.
How can I catch the "onchange" event of a document?
Thanks.
Regards,
Isabelle
Catch "onchange" event of a document
-
- Posts: 706
- Joined: Wed Nov 16, 2005 11:11 am
Re: Catch "onchange" event of a document
Hi Isabelle,
The InplaceEditingListener is used only when creating custom form controls. For your use case you should use a ro.sync.ecss.extensions.api.AuthorListener. In the context of an Author Component, such a listener is added like this:
Best regards,
Alex
The InplaceEditingListener is used only when creating custom form controls. For your use case you should use a ro.sync.ecss.extensions.api.AuthorListener. In the context of an Author Component, such a listener is added like this:
Code: Select all
WSEditorPage currentPage = editorComponent.getWSEditorAccess().getCurrentPage();
if (currentPage instanceof WSAuthorEditorPage) {
AuthorDocumentController documentController = ((WSAuthorEditorPage) currentPage).getDocumentController();
documentController.addAuthorListener(new AuthorListenerAdapter() {
// TODO Override methods of interest.
});
}
Best regards,
Alex