Use in Custom App
Generate barcode label HTML for use in your own custom app:
Include the code below in any area where server-side scripting is allowed in order to generate & consume the HTML for a barcode label. The function returns an HTML string of the complete barcode label.
var barHelper = new x_yala_bargen.BarcodeGeneratorHelper();
var barHTML = barHelper.getBarcodeHTML(barcodeID, tableName, recID, serverRender);
barcodeID: SysID of the Barcode Generator record to use for barcode generation
tableName: Table of the record being referenced for barcode generation
recID: SysID of the record being reference for barcode generation
serverRender: true/false whether to render the HTML server-side (usually true)
Last updated