Skip to content

Instantly share code, notes, and snippets.

@SaucyJack
SaucyJack / app.html
Last active July 5, 2017 15:06
Grid-Pager-All-Refresh
<template>
<router-view></router-view>
</template>
@SaucyJack
SaucyJack / app.html
Last active June 13, 2017 21:45
Grid-on-ready
<template>
<router-view></router-view>
</template>
@SaucyJack
SaucyJack / app.html
Last active February 18, 2020 23:06
Grid: saving/loading grid state
<template>
<router-view></router-view>
</template>
@SaucyJack
SaucyJack / app.html
Created May 30, 2017 19:03
Editor: basic usage
<template>
<require from="aurelia-kendoui-bridge/editor/editor"></require>
<div id="example">
<textarea ak-rich-editor value.bind="bodyContent" style="height:440px">
</textarea>
</div>
</template>
@SaucyJack
SaucyJack / app.html
Created May 30, 2017 19:00 — forked from gist-master/app.html
Editor: basic usage
<template>
<require from="aurelia-kendoui-bridge/editor/editor"></require>
<div id="example">
<textarea ak-rich-editor value.bind="bodyContent" style="height:440px">
</textarea>
</div>
</template>