This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>GistRun</title> | |
</head> | |
<body> | |
<h1>Hello world!</h1> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.3/require.js" data-main="script"></script> | |
<!--<script src="./text.js"></script>--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>GistRun</title> | |
</head> | |
<body> | |
<h1>Hello world!</h1> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.3/require.js" data-main="script"></script> | |
<script src="./text.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="./basic-use.css!css"></require> | |
<require from="aurelia-kendoui-bridge/slider/slider"></require> | |
<div id="example"> | |
<div id="slider-basicuse"> | |
<div class="demo-section k-content"> | |
<h4 style="padding-top: 2em;">Equalizer</h4> | |
<div id="equalizer"> | |
<input repeat.for="slider of sliders" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
margin: 0; | |
} | |
.btn{ | |
font-size: 30px; | |
padding: 20px; | |
margin-top: 20px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
margin: 0; | |
} | |
.btn{ | |
font-size: 30px; | |
padding: 20px; | |
margin-top: 20px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> | |
<!--<ak-grid k-data-source.bind="datasource" k-on-data-bound.delegate="onDataBound($event.detail)">--> | |
<ak-grid k-data-source.bind="datasource" id="grid" k-widget.bind="grid" | |
k-on-data-bound.delegate="onDataBound($event.detail)" | |
k-sortable.bind="{ mode: 'multiple', allowUnsort: 'true'}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="./customizing-templates.css!css"></require> | |
<require from="aurelia-kendoui-bridge/multiselect/multiselect"></require> | |
<require from="aurelia-kendoui-bridge/button/button"></require> | |
<require from="aurelia-kendoui-bridge/common/template"></require> | |
<div id="example" class="multiselect-custom-templates"> | |
<div class="demo-section wide k-content"> | |
<ak-multiselect k-placeholder="Select customers..." | |
k-data-text-field="ProductName" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="bootstrap/css/bootstrap.css"></require> | |
<require from="bootstrap-datepicker/css/bootstrap-datepicker.css"></require> | |
<h1>${message}</h1> | |
<input ref="datepicker"> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="aurelia-kendoui-bridge/button/button"></require> | |
<ul ak-menu="k-open-on-click.bind:true; k-data-source.bind: dataSource" ak-menu.ref="menuVM" class="rgk-action-menu"> | |
</ul> | |
<button click.delegate="change()">Change</button> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<require from="aurelia-kendoui-bridge/grid/grid"></require> | |
<require from="aurelia-kendoui-bridge/grid/col"></require> | |
<ak-grid k-data-source.bind="datasource" | |
k-toolbar.bind="['excel']" | |
k-options.bind="options" | |
k-excel.bind="{ fileName: 'Kendo UI Grid Export.xlsx' }"> | |
<ak-col k-title="Contact Name" k-field="ContactName"> | |
</ak-grid> |