Answered
We have an “orphaned” application that currently can populate fields on PDF’s with data from a database. We currently fill a field on most of our forms with what we refer to as an “application number”. Its field name is CQ_85.
We would like to generate barcodes on our forms using this “application number”. It is my understanding that we would need to have an asterisk before and after our application number in order to generate the barcode that we would be able to scan.
Is there anyway to do this?
Any help will be appreciated.
Thanks,
Mike
getField("your_barcode_field").value = event.value ? ("*" + event.value + "*") : "";
If you need to include a check digit, you'd have to add additional JavaScript to determine what it should be and add it in there.
George