Which product are you using?
PDF.js Express Plus
PDF.js Express Version
UI Version: 8.1.0
Core Version: 8.1.1
Detailed description of issue
When importing a previously exported/saved XFDF, the signatures import fine, but the blue “Sign Here” button shows up on top of the signatures. Like in the image here:
Expected behaviour
It should be importing the signature without the blue “Sign Here” button superimposed over it.
Does your issue happen with every document, or just one?
Every.
Link to document
Here is the PDF in question. There are 5 different signature fields as you can see.
uvu_facility_modification_request.pdf (587.7 KB)
Code snippet
This is how I first export the XFDF data:
annotationManager.exportAnnotations({ widgets: true, links: false }).then(xfdfString => { saveInMyServer(xfdfString) })
This is how I import the XFDF later:
instance.Core.annotationManager.importAnnotations(xfdfstring);