Java Wicket Barcode Setup

The ShieldUI Barcode Apache Wicket component offers streamlined setup and deployment of our libraries.

Since it is a wrapper of our JavaScript Barcode component, you need to include the references to the CSS and JavaScript resources in the HEAD section of your webpage:

<!DOCTYPE html>
<html>
<head>
<title>Shield Chart</title>
<meta charset="utf-8" />

<link rel="stylesheet" type="text/css" href="css/shieldui-all.min.css" />
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/shieldui-all.min.js"></script>

</head>
<body>
    <div wicket:id="barcode"></div>
</body>
</html>

Then init the barcode and add it to your wicket page like in the following example:

Barcode barcode = new Barcode("barcode");
BarcodeOptions options = barcode.getOptions();

options.setValue("123456");
options.setType(BarcodeOptions.Type.CODE_128);

add(barcode);

To see more information on this wrapper, please refer to the following startup guide.

The supported barcode types are:
"CODABAR",
"CODE-11",
"CODE-39",
"CODE-93",
"CODE-128",
"CODE-128-A",
"CODE-128-B",
"CODE-128-C",
"CODE-25-STANDARD",
"CODE-25-INTERLEAVED",
"EAN-8",
"EAN-13",
"UPC-A",
"UPC-E",
"MSI-10",
"MSI-10-10",
"MSI-11",
"MSI-11-10",
"POSTNET";