Hi guys,
I have a question hope someone can give me a heads-up.
I am using:
Birt 3.7.2
Tomcat6
Ubuntu 10
MySQL
I have a JSP which is called by the user. The JPS concatenates an HTML string which in turn is inserted into a MySQL table/field.
The concatenated HTML string uses a jQuery plugin to generate a UPC/barcode. Inside the HML Head I have:
<script type="text/javascript" src="http://[IP ADDRESS]/birt/webcontent/birt/upc/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="http://[IP ADDRESS]/birt/webcontent/birt/upc/jquery-barcode-2.0.2.min.js"></script>
Then in the HTML Body I have:
<div id="bcTarget"></div>
<script>
$("#bcTarget").barcode("012345678", "code39",{barWidth:1, barHeight:30}) ;
</script>
Finally, I call the Birt report which selects the appropriate HTML from the table. I place the HTML in a Dynamic Text field:
<VALUE-OF format="HTML">row["HTMLSTRING"]</VALUE-OF>
The HTML is rendered correctly but with no UPC/barcode. I try the HTML outside of Birt and it generates the barcode correctly.
I have also tried to place the jQuery files inside /webcontent/birt, but this does not work either.
Please help.