Accusoft will be performing a system upgrade from February 2-6, 2023. As a result, certain external services will be temporarily unavailable during that time.
For more detailed information, Click Here.
I want the Thumbnail tab in PrizmDoc Viewer to be open by default. How can this be done?
A simple solution could be to simply implement a ‘click-on-the-button’ when you first open the Viewer, if you’re fine with the user being able to close the thumbnail pane:
$("[data-pcc-toggle=\"dialog-thumbnails\"]").click();
If you’d rather have the tab always open, in viewer.js there’s a function called toggleDialogs(opts) that checks for whether the thumbnail pane is being toggled through the opts.toggleID, and if so, adds openClass to the thumbDialog. You could modify this logic so that the thumbnail pane is permanently open.
viewer.js
toggleDialogs(opts)
opts.toggleID
openClass
thumbDialog