Product Ideas

As a PrizmDoc customer, I would like removal of full page redactions to be more straightforward.

Currently in PrizmDoc v13.3,  if you make a full page redaction, the only way to delete it is using the right click "Immediate Actions" menu. Unlike when you make a regular redaction, there is no context menu box to delete them. This makes the Immediate Actions menu the only way to delete full page redactions. This functionality can be seen in the below sample when you enable redactions:

https://www.accusoft.com/code-examples/configure-the-viewers-ui/ 

Furthermore, the setting "immediateActionMenuMode" is disabled by default, and must be manually set by the user to enable the right click menu, otherwise there is no way to remove the full page redaction at all. This functionality can be seen in the Redaction Demo:

https://www.accusoft.com/demos/redaction-demo/

As a PrizmDoc customer, I would like the availability of full page redaction removal to be more straightforward, either by making the default of this setting to be "on" while there's a redaction on screen, or for the context menu to be usable for full page redactions.

Source: http://help.accusoft.com/PrizmDoc/v13.3/HTML/webframe.html#external-jQuery.fn.html

  • Guest
  • Jul 27 2018
  • Likely to Implement
  • Attach files
  • Ben Reid commented
    1 Aug, 2018 01:19am

    FYI

    In the viewer.js file, around line ~1180 you can find the logic that executes when a full-page redaction is made.

    Essentially when a full-page redaction is made, a rectangle redaction (sized according to the page dimensions) is added and user interaction is disabled...

     .setInteractionMode(PCCViewer.Mark.InteractionMode.SelectionDisabled);

    ...if this line is either removed or modified such that the selection mode is set to "Full":

    .setInteractionMode(PCCViewer.Mark.InteractionMode.Full);

    Then the full-page redaction will behave just as any other rectangle redaction would.