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/combobox/combobox"></require> | |
<require from="aurelia-kendoui-bridge/common/template"></require> | |
<div id="example"> | |
<div class="demo-section k-content"> | |
<h4>Orders</h4> | |
<ak-combobox k-data-text-field="ShipName" | |
k-data-value-field="OrderID" | |
k-filter="contains" |
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/colorpalette/colorpalette"></require> | |
<require from="aurelia-kendoui-bridge/colorpicker/colorpicker"></require> | |
<require from="./basic-use.css!css"></require> | |
<div id="example"> | |
<div class="demo-section hidden-on-narrow k-content wide"> | |
<div id="background" css="background-color: ${ background }"> | |
<div class="column"> | |
<h3 class="title">Select Wall Paint</h3> |
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
.box .k-textbox { | |
width: 80px; | |
} | |
.box .k-button { | |
min-width: 80px; | |
} | |
li { | |
margin: 0; | |
padding: 0; | |
list-style: none; |
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/datetimepicker/datetimepicker"></require> | |
<div id="example"> | |
<div class="demo-section k-content"> | |
<h4>Remind me on</h4> | |
<input ak-datetimepicker="k-value.bind: today" style="width: 100%" /> | |
</div> | |
</div> | |
</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
<!-- app.html --> |
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/chart/chart"></require> | |
<ak-chart k-widget.bind="chart" | |
k-title.bind="{text: 'What is you favourite sport?'}" | |
k-legend.bind="legend" | |
k-series-defaults.bind="seriesDefaults" | |
k-series.bind="series" | |
k-tooltip.bind="tooltip"> | |
</ak-chart> |
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/chart/chart"></require> | |
<ak-chart k-title.bind="{text: 'Ozone Concentration (ppm)'}" | |
k-legend.bind="legend" | |
k-data-source.bind="{data: ozone}" | |
k-series-defaults.bind="seriesDefaults" | |
k-series.bind="series" | |
k-value-axis.bind="valueAxis" | |
k-category-axis.bind="categoryAxis" | |
k-tooltip.bind="tooltip"> |
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
<!-- app.html --> |
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/chart/chart"></require> | |
<ak-chart k-title.bind="{text: 'Rainfall - Wind Speed'}" | |
k-legend.bind="{position: 'bottom'}" | |
k-series-defaults.bind="{type: 'scatter'}" | |
k-series.bind="series" | |
k-x-axis.bind="xAxis" | |
k-y-axis.bind="yAxis"> | |
</ak-chart> | |
</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/chart/chart"></require> | |
<div id="example"> | |
<div class="demo-section k-content wide"> | |
<ak-chart k-legend.bind="legend" | |
k-chart-area.bind="chartArea" | |
k-series-defaults.bind="seriesDefaults" | |
k-series.bind="series" | |
k-tooltip.bind="tooltip" | |
style="background: center no-repeat url('http://demos.telerik.com/kendo-ui/content/shared/styles/world-map.png');"> |