JSPrintManager unable to print without client app

I am trying to silently print a PDF file using JSPrintManager in a ReactJS project. It is working fine if JSPrintManager client app intalled on local machine. Is there any way to achieve silent printing without the client app?

Tried adding following scripts in a component

const script = document.createElement("script"); script.src = "JSPrintManager.js"; script.src = ""; script.src = ""; script.async = true; document.body.appendChild(script);

1 Answer

You will need to install the client app to function as expected Since there are dependencies of the JSPrintManager on the Client app.

JSPrintManager (JSPM) App is the client-side part of JSPrintManager Solution. It can be installed on any number of client machines without paying any fees.

Ref:

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like