Skip to content

Instantly share code, notes, and snippets.

View johntom's full-sized avatar

John Tomaselli johntom

View GitHub Profile
<!doctype html>
<html>
<head>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div aurelia-app="src/configure">
Loading...
<!doctype html>
<html>
<head>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div aurelia-app="src/configure">
Loading...
<!doctype html>
<html>
<head>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div aurelia-app="src/configure">
Loading...
@johntom
johntom / app.html
Created March 29, 2018 18:53 — forked from gist-master/app.html
Multiselect: basic usage
<template>
<require from="./basic-use.css!css"></require>
<require from="aurelia-kendoui-bridge/multiselect/multiselect"></require>
<require from="aurelia-kendoui-bridge/button/button"></require>
<div id="example">
<div class="demo-section wide k-content">
<h2>Invite Attendees</h2>
<label for="dd">dd</label>
@johntom
johntom / app.html
Last active November 17, 2017 17:28 — forked from freshcutdevelopment/app.html
Aurelia Gist - Add book form
<template>
<require from="book-form"></require>
<book-form></book-form>
<div class="notification" show.bind="notification.length > 0">
${notification}
</div>
</template>
@johntom
johntom / app.html
Created April 20, 2017 14:46
Grid: frozen columns
<template>
<require from="aurelia-kendoui-bridge/grid/grid"></require>
<require from="aurelia-kendoui-bridge/grid/col"></require>
<require from="aurelia-kendoui-bridge/grid/grid-command"></require>
<h1>4-20 Checkox Column & Multi-Select </h1>
<button ak-button click.delegate="showSelection()">Show selection</button>${selectedids}
<!--<ak-grid k-data-source.bind="dataSource | toKendoDataSource">-->
@johntom
johntom / app.html
Last active April 23, 2017 21:18
Grid: frozen columns
<template>
<require from="aurelia-kendoui-bridge/grid/grid"></require>
<require from="aurelia-kendoui-bridge/grid/col"></require>
<require from="aurelia-kendoui-bridge/grid/grid-command"></require>
<require from="aurelia-kendoui-bridge/common/template"></require>
<h2>Multi Select checkbox with header all option and local datasource</h2>
<button ak-button click.delegate="getData1()">get data1</button>
<button ak-button click.delegate="getData2()">get data2</button>
@johntom
johntom / app.html
Last active April 19, 2017 16:02
Grid: frozen columns
<template>
<require from="aurelia-kendoui-bridge/grid/grid"></require>
<require from="aurelia-kendoui-bridge/grid/col"></require>
<require from="aurelia-kendoui-bridge/grid/grid-command"></require>
<h1>Forked frozed columns</h1>
<h2>3-31-17 added k-on-edit.delegate</h2>
<h2>Multi Select with ctrl+leftbutton</h2>
@johntom
johntom / alt-layout.html
Last active April 14, 2017 12:48
Aurelia router with layouts
<template>
<section class="au-animate">
<div class="well">
<content select="#navigation"></content>
</div>
<div>
<content select="#content"></content>
</div>
</section>
</template>
@johntom
johntom / app.html
Last active March 31, 2017 16:10 — forked from Alex-Bubblemaster/app.html
Grid: frozen columns
<template>
<require from="aurelia-kendoui-bridge/grid/grid"></require>
<require from="aurelia-kendoui-bridge/grid/col"></require>
<require from="aurelia-kendoui-bridge/grid/grid-command"></require>
<h1>Forked frozed columns</h1>
<h2>3-31-17 added k-on-edit.delegate</h2>
<ak-grid k-data-source.bind="datasource" id="grid" k-widget.bind="grid"
k-on-data-bound.delegate="onDataBound($event.detail)"
k-on-edit.delegate="onEdit($event.detail)"