Issue: Signed documents print with "Visual Aids" visible when using window.print option #1490
Unanswered
gitcodehelp
asked this question in
Q&A / Help
Replies: 1 comment 1 reply
-
They can be turned off manually with View->Visual Aids prior to hitting print. That said, I don't know why TinyMCE is leaving them on when printing, but we could intercept the print command in TinyMCE and toggle the option off to make sure they never print. I can't think of a scenario where they should? If it's only signed docs that are the issue, we could turn them off by default when viewing/printing signed docs too. It looks like we already manually turn them off when printing from a separate window with the option you mentioned. Moved to issue #1491 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
This relates to an unresolved aspect of Issue/Bug #409.
Issue:
Clients often want a printed copy of their document after signing on the signature pad.
Signed documents will display in the editor/viewer with "Visual Aids" visible by default, and will print as such if using the option:
Options > Documents > "Printing word processor documents uses hidden iframe and window.print" = checked
Unchecking that option will generate/print an interim preview without aids, but now users must go through extra steps to print anything.
Related Feature Request:
Unless they are designing a template (rare), my users prefer to always have the aids hidden anyway, so my solution has been to hide aids by default in the source code:
File html.py: def tinymce_header(... visualaids: bool = False ...)
Could you possibly add this as a global option? Such as:
Options > Documents > checkbox: "Always start word processor with Visual Aids disabled"
(or, eventually, as a per-user option under their User Settings)?
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions