In This Topic
Reference Guides / JavaScript API / Events / RegisterOnCommentAdded

RegisterOnCommentAdded

In This Topic
 RegisterOnCommentAdded

This function allows you to trigger a function of your own when a comment has been added.

RegisterOnCommentAdded: function (docuViewareID, callback)

Parameters

docuViewareID
The identifier for the DocuVieware™ instance.
callback
The function you want to execute on event.
The callback provides an argument having a prototype { id, pageNo }.
- id specifies the comment unique id that can be retrieved from the server side using the Guid property of the annotation class.
- pageNo is the page number the comment has been added on.

Return Value

1 if error.

Example of usage

This JavaScript makes sure the DocuVieware control is properly loaded and initialized and then subscribes to the event on load to display the corresponding comment id and page in the console.

function RegisterOnCommentAddedOnDocuViewareAPIReady() {
    if (typeof DocuViewareAPI !== "undefined" && DocuViewareAPI.IsInitialized("DocuVieware1")) {
        DocuViewareAPI.RegisterOnCommentAdded("DocuVieware1", function (annot) { console.log(annot.id); });
    }
    else {
        setTimeout(function () { RegisterOnCommentAddedOnDocuViewareAPIReady() }, 10);
    }
}
document.addEventListener("DOMContentLoaded", function () {
    RegisterOnCommentAddedOnDocuViewareAPIReady();
}, false);