Custom Stamp Tooltip and Sort Order

WebViewer Version: 11.3.0

Please give a brief summary of your issue:

Is it possible to display the stamp name in a tooltip when hovering over custom stamps?

Does Webviewer provide a built-in sorting feature for custom stamps?

Kindly let us know if Apryse have such functionality?

Thank,
Zaid

1 Like

Hello, I’m AiRon, an automated tech support bot :robot:
While you wait for one of our customer support representatives, I can help you with your question.


To address your queries regarding custom stamps in WebViewer version 11.3.0:

Some things you can try:

  • Tooltip for Custom Stamps: WebViewer does not provide a built-in feature to display the name of a custom stamp directly as a tooltip. However, you can customize the UI to add tooltips using JavaScript by listening to hover events on the stamp elements and displaying the desired information.

  • Sorting Custom Stamps: WebViewer does not have a built-in sorting feature specifically for custom stamps. You will need to implement a custom sorting mechanism using JavaScript by manipulating the DOM elements or the data structure that holds your custom stamps.



Here are some resources that might help you:


Hopefully, this helps you solve your problem while you wait for a human to get back to you.

1 Like

Hello Zaid,

You can use the setContents API in this case to display anything you want when hovering over the stamp annotation.
https://sdk.apryse.com/api/web/Core.Annotations.StampAnnotation.html#setContents__anchor

This works not only for stamps but also for all types of annotations.

annotation.setContents('123');

Best Regards,
Darian

2 Likes