Skip to content

Instantly share code, notes, and snippets.

@adriatic
Last active July 19, 2016 18:49
Show Gist options
  • Save adriatic/c6492a671b1fd8aa8113c848b431ece4 to your computer and use it in GitHub Desktop.
Save adriatic/c6492a671b1fd8aa8113c848b431ece4 to your computer and use it in GitHub Desktop.
Barcode: basic use
<template>
<require from="./basic-use.css"></require>
<div id="example">
<div class="demo-section wide k-content">
<ul id="dairy">
<li>
<img src="http://demos.telerik.com/kendo-ui/content/shared/images/foods/200/12.jpg" alt="Queso Manchego La Pastora" />
<span ak-barcode="k-value: 2346722; k-type: ean8; k-width.bind: 280; k-height.bind: 100"></span>
</li>
<li>
<img src="http://demos.telerik.com/kendo-ui/content/shared/images/foods/200/32.jpg" alt="Mascarpone Fabioli" />
<span ak-barcode="k-value: Mascarpone; k-type: code128; k-width.bind: 280; k-height.bind: 100"></span>
</li>
<li>
<img src="http://demos.telerik.com/kendo-ui/content/shared/images/foods/200/72.jpg" alt="Gudbrandsdalsost" />
<span ak-barcode="k-value: CHEESE; k-type: code39; k-width.bind: 280; k-height.bind: 100"></span>
</li>
</ul>
</div>
</div>
</template>
export class BasicUse {}
#dairy {
margin: 0;
padding: 30px 0;
list-style-type: none;
}
#dairy li {
display: inline-block;
padding: 10px;
margin: 6px;
background-color: #fff;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
#dairy li span, #barcode-basic-use #dairy li img {
margin: 0;
padding: 0;
}
#dairy li img {
margin: 40px;
}
<!doctype html>
<html>
<head>
<title>Aurelia KendoUI bridge</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.1.226/styles/kendo.common.min.css">
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.1.226/styles/kendo.rtl.min.css">
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.1.226/styles/kendo.default.min.css">
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2016.1.226/styles/kendo.mobile.all.min.css">
<script src="https://kendo.cdn.telerik.com/2016.1.226/js/jszip.min.js"></script>
</head>
<body aurelia-app="main">
<h1>Loading...</h1>
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.6/system.js"></script>
<script src="https://rawgit.com/aurelia-ui-toolkits/aurelia-kendoui-bundles/0.3.5/config2.js"></script>
<script>
System.import('aurelia-bootstrapper');
</script>
</body>
</html>
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('aurelia-kendoui-bridge', kendo => kendo.pro());
aurelia.start().then(a => a.setRoot());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment