New to Kendo UI for jQuery? Download free 30-day trial

Getting Started with the Barcode

This guide demonstrates how to get up and running with the Kendo UI for jQuery Barcode.

After the completion of this guide, you will be able to achieve the following end result:

   <div id="barcode"></div>
   <script>
      $("#barcode").kendoBarcode({
        value:"12345ABCD",
        type: "code128",
        color: '#6F21A5',
        background: '#F1E2FC'
      });
   </script>

1. Create a Div Element

First, create a <div> element on the page that will be used to initialize the Barcode component.

   <div id="barcode"></div>

2. Initialize the Barcode

In this step, you will initialize the Barcode from the <div> element. All settings of the Barcode will be provided in the script statement and you have to describe its configuration in JavaScript.

   <div id="barcode"></div>

   <script>
       $("#barcode").kendoBarcode(); 
    </script>

3. Set the Value of the Barcode

You can configure the initial value of the component by using the value option.

   <div id="barcode"></div>

   <script>
       $("#barcode").kendoBarcode({
         value:"12345ABCD"
       }); 
    </script>

4. Set the Encoding Type

The Barcode provides an option to set the symbology the component will use. Use the type configuration option to set the encoding.

   <div id="barcode"></div>
   <script>
      $("#barcode").kendoBarcode({
        value:"12345ABCD",
        type: "code128",
        color: '#6F21A5',
        background: '#F1E2FC'
      });
   </script>

5. Change the Barcode Colors

You can customize the Barcode appearance by setting the color and background color option.

   <div id="barcode"></div>
   <script>
      $("#barcode").kendoBarcode({
        value:"12345ABCD",
        type: "code128",
        color: '#6F21A5',
        background: '#F1E2FC'
      });
   </script>

Next Steps

See Also

In this article