Skip to content

Instantly share code, notes, and snippets.

@gist-master
gist-master / app.html
Created July 19, 2016 18:49 — forked from adriatic/app.html
Map: export
<!-- app.html -->
@gist-master
gist-master / app.html
Created July 19, 2016 18:49 — forked from adriatic/app.html
Sparkline: remote data
<!-- app.html -->
@gist-master
gist-master / app.html
Created July 19, 2016 18:49 — forked from adriatic/app.html
Map: binding to geojson
<!-- app.html -->
@gist-master
gist-master / index.html
Created July 19, 2016 18:49 — forked from adriatic/index.html
Bar chart: Gap and spacing
<!doctype html>
<html>
<head>
<title>Aurelia</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">
@gist-master
gist-master / app.html
Created July 19, 2016 18:49 — forked from adriatic/app.html
TreeView: binding to local data
<template>
<require from="./binding-to-local-data.css"></require>
<div id="example">
<div class="demo-section k-content">
<h4>Inline data (default settings)</h4>
<div ak-treeview="k-data-source.bind:defaultData" id="treeview-left"></div>
</div>
<div class="demo-section k-content">
@gist-master
gist-master / app.html
Created July 20, 2016 06:32 — forked from adriatic/app.html
TreeView: Api
<template>
<div id="example">
<div class="box wide">
<div class="box-col">
<h4>Expand / Collapse</h4>
<ul class="options">
<li>
<button class="k-button" id="expandAllNodes" click.delegate="expandAllNodes()">Expand all nodes</button>
</li>
@gist-master
gist-master / app.html
Created July 20, 2016 06:32 — forked from adriatic/app.html
TreeView: checkboxes
<template>
<require from="./checkboxes.css"></require>
<div id="example">
<div class="demo-section k-content">
<div>
<h4>Check nodes</h4>
<div ak-treeview="k-data-source.bind: data;
k-checkboxes.bind: { checkChildren : true};
k-widget.bind: treeview"
@gist-master
gist-master / app.html
Created July 20, 2016 06:32 — forked from adriatic/app.html
TreeView: images
<template>
<require from="./images.css"></require>
<div id="example">
<div class="demo-section k-content">
<h4>TreeView with images</h4>
<div ak-treeview="k-data-source.bind: imagesData" id="treeview-images"></div>
</div>
<div class="demo-section k-content">
<h4>TreeView with sprites</h4>
@gist-master
gist-master / app.html
Created July 20, 2016 06:40 — forked from adriatic/app.html
Notification: events
<!-- app.html -->
@gist-master
gist-master / app.html
Created July 20, 2016 13:00
Grid: basic usage
<template>
<!-- creates the datepicker property on the view-model -->
<!-- this is the equivalent of kendo.jQuery('input').kendoDatePicker() -->
<input ak-datepicker="k-widget.bind: datepicker" />
</template>