Some test text!
Web / Guides / Statuses
The annotation statuses/states provide a built-in way to create review and approval workflows. The default states are: Accepted
, Rejected
, Cancelled
, Completed
, and None
. Those are part of PDF Specification and the reason they were chosen as default. However, it is possible to change them and set yours.
We can set the annotation state programmatically by calling updateAnnotationState.
WebViewer(...)
.then(instance => {
const { documentViewer, annotationManager, Annotations } = instance.Core;
documentViewer.addEventListener('annotationsLoaded', () => {
const annotList = annotationManager.getAnnotationsList();
const annot = annotList[0];
annotationManager.updateAnnotationState(annot, 'Completed');
});
});
If the current set of annotation states does not work for you, you can update them by modifying annotation states. You just need to edit the highlighted portion.
After you are satisfied with the changes, you can follow the guide on how to update your version of WebViewer UI.
updateAnnotationState
To update annotation state.
getState
To get annotation state.
getStateModel
To get annotation state model.
setState
To set annotation state.
setStateModel
To set annotation stateModel.
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales