sets the barcode type
webix.ui({
view:"barcode",
type: "upcA"
});
//or
var barcode = webix.ui({
view:"barcode"
});
barcode.define("type", "upcA");
there are 3 built-in types: "ean8", "ean13" and "upcA" ("ean13" is the default one)
Back to top