Hi David !!
I created the script below, in my personal environment it is working perfectly, however in the business environment the barcode does not appear.
Do you have any idea what's going on?
"
"<script src='../BarcodeGenerator/js/BarcodeGenerator.JS' type='text/javascript'></script>
<svg id ='barcodeSvg'></svg>
<script type='text/javascript'>
JsBarcode('#" + BarcodeContainer.Id + " #barcodeSvg', '" + EncodeJavaScript(BarcodeValue) + "', {
format: '" + Format + "',
width: " + Width + ",
height: " + Height + ",
displayValue: " + ToLower(BooleanToText(DisplayValue)) + ",
text: '" + Text + "',
fontOptions: '" + FontOptions + "',
font: '" + Font + "',
textAlign: '" + TextAlign + "',
textPosition: '" + TextPosition + "',
textMargin: " + TextMargin + ",
fontSize: " + FontSize + ",
background: '" + Background + "',
lineColor: '" + LineColor + "',
margin: " + Margin + ",
marginTop: " + MarginTop + ",
marginBottom: " + MarginBottom + ",
marginLeft: " + MarginLeft + ",
marginRight: " + MarginRight + ",
valid: " + Valid + "
});
</script>"
"