Skip to content

Instantly share code, notes, and snippets.

@joelowrance
joelowrance / app.html
Created July 4, 2018 00:13 — forked from gist-master/app.html
Buttongroup
<template>
<require from="aurelia-kendoui-bridge/buttongroup/buttongroup"></require>
<require from="./logger.js"></require>
<div id="example" data-use-native-scrolling="true">
<div class="demo-section k-content">
<ul ak-buttongroup="k-index.bind: 0; k-widget.bind: myWidget"
k-on-select.delegate="onSelect($event.detail)"
style="margin: 0 auto;">
<li>
@joelowrance
joelowrance / app.html
Created July 4, 2018 00:13 — forked from gist-master/app.html
Buttongroup
<template>
<require from="aurelia-kendoui-bridge/buttongroup/buttongroup"></require>
<require from="./logger.js"></require>
<div id="example" data-use-native-scrolling="true">
<div class="demo-section k-content">
<ul ak-buttongroup="k-index.bind: 0; k-widget.bind: myWidget"
k-on-select.delegate="onSelect($event.detail)"
style="margin: 0 auto;">
<li>
@joelowrance
joelowrance / app.html
Last active September 28, 2018 18:54 — forked from jdanyow/app.html
Aurelia Validation Demo
<template>
<require from="./registration-form"></require>
<registration-form></registration-form>
</template>
@joelowrance
joelowrance / app.html
Created March 6, 2018 02:37
aurelia/html repeat.for - redundant elements
<template>
<li>
<b>Institute:</b> Length: ${institutes.length}
<ul>
<li repeat.for="el of institutes">
${el.institute}: ${el.terminalCount}
</li>
</ul>
</li>
</template>