PrizmDoc Hybrid Viewing: Reduce server viewing requirements and streamline document processing
Read More
Enable your employees to remain productive throughout the document management process.
Learn how SmartZone uses a regular expression engine integrated into the recognition engine to achieve the best possible accuracy on data that can be defined by a regular expression.
The tale of how an underdog is going head-to-head with a tech giant (and winning).
How can I remove the scroll bar/disable scrolling in PrizmDoc Viewer?
A quick way to do this would be to have something like the code below. Make sure to do this after this DOM element has loaded, so after the viewer is ready.
$('.pccPageListContainerWrapper').css('overflow', 'hidden');
The following will both remove the scroll bar, and disable scrolling:
$('.pccPageListContainerWrapper').css('overflow', 'unset');