Website Configuration
Referencing JSPrintManager Javascript Object
JSPrintManager is a Javascript object which is used in your website to generate Client Print Jobs. A Client Print Job allows you to specify which client printer to use (Default, one specific Printer Name, display system Printer dialog box or some LPT or RS232 COM port or Bluetooth) as well as the commands or files you want to print or send to the specified client printer.
To use JSPrintManager in your website you have to add the following references:
<!-- JSPrintManager Javascript Source -->
<script type="text/javascript" src="JSPrintManager.js"></script>
If you need a specific Code Page or Text Encoding when printing Raw Commands then the following is recommended:
<!-- js-codepage files from https://github.com/SheetJS/js-codepage/tree/master/bits -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/SheetJS/js-codepage/dist/cptable.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/SheetJS/js-codepage/dist/cputils.js"></script>
If you're targeting Interner Explorer (IE) users, then also add the following reference
<!-- Promise support for IE -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.3.5/bluebird.min.js"></script>