<divid="barcode"></div><script>$('#barcode').kendoBarcode({width:300,value:"123456"});// get a reference to the barcode widgetvar barcode =$("#barcode").data("kendoBarcode");// get the value of the barcode.var value = barcode.value();/* The result can be observed in the DevTools(F12) console of the browser. */console.log(value);// sets the value of the barcode and redraws it.
barcode.value("1234567");</script>