Skip to content

Instantly share code, notes, and snippets.

View hanssens's full-sized avatar

Juliën Hanssens hanssens

View GitHub Profile
@hanssens
hanssens / app.html
Created January 27, 2017 12:20 — forked from JeroenVinke/app.html
Aurelia KendoUI
<!-- put your view here -->
<template>
<p>Loaded</p>
</template>
@hanssens
hanssens / app.html
Created July 26, 2016 13:31 — forked from JeroenVinke/app.html
Aurelia Kendo - Grid - binding to local data
<template>
<ak-grid k-data-source.bind="datasource"
k-selectable="row"
k-on-change.delegate="rowSelected($event.detail)">
<ak-col k-title="ProductName" k-field="ProductName"></ak-col>
<ak-col k-title="Unit Price" k-field="UnitPrice" k-format="{0:c}" k-width="130px"></ak-col>
<ak-col k-title="Units In Stock" k-field="UnitsInStock" k-width="130px"></ak-col>
<ak-col k-field="Discontinued" k-width="130px"></ak-col>
</ak-grid>
</template>
@hanssens
hanssens / app.html
Created May 6, 2016 08:01 — forked from JeroenVinke/app.html
Aurelia - Kendo UI Playground
<template>
<ak-chart k-title.bind="{text: 'Gross Domestic product growth \n /GDP annual %/'}"
k-legend.bind="{position: 'bottom'}"
k-series-defaults.bind="seriesDefaults"
k-series.bind="series"
k-value-axis.bind="valueAxis"
k-category-axis.bind="categoryAxis"
k-tooltip.bind="tooltip">
</ak-chart>
</template>
@hanssens
hanssens / C# Template
Last active August 29, 2015 13:56 — forked from adambyram/C# Template
C# build template for CodeRunner on OSX
using System;
using System.Collections.Generic;
using System.Linq;
namespace CodeRunnerCSharp
{
class Program
{
public static void Main (string[] args)
{