Catch "onchange" event of a document

Post here questions and problems related to oXygen frameworks/document types.
Isabelle
Posts: 142
Joined: Fri Jan 20, 2017 1:11 pm

Catch "onchange" event of a document

Post by Isabelle »

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
alex_jitianu
Posts: 1009
Joined: Wed Nov 16, 2005 11:11 am

Re: Catch "onchange" event of a document

Post by alex_jitianu »

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:

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
Post Reply