Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

Encode leading zeros in barcode

Avatar

Level 3

Hi Everyone!

I am having trouble with encoding leading zeros into a barcode. Is there a javascript to force a leading zero to be generated into a 2D barcode in LiveCycle?

Thanks!!!!!!

3 Replies

Avatar

Level 7

Which barcode are you using? I was able to leave the leading zeroes in an EAN8 barcode just by supplying the rawvalue as a text string.

this.rawValue = "00001234";

Avatar

Level 3

I'm using PDF417. The barcode gets generated by a button. Would the code go on the button or on the field itself?

Thanks for your help!

Avatar

Level 7

I was using the calculate event for that previous example, but the PDF417 BarCode doesn't allow that to be modified. So, I would suggest a button or other valid event.

A quick test to verify it's working.


p1.btnChangeBarCode::click


if (PDF417BarCode1.rawValue == "0000001234") PDF417BarCode1.rawValue = "9876543210";


else PDF417BarCode1.rawValue = "0000001234";