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: 'A digital signal'}" | |
k-legend.bind="{visible: false}" | |
k-series.bind="series" | |
k-value-axis.bind="valueAxis" | |
k-category-axis.bind="categoryAxis"> | |
</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/diagram/diagram"></require> | |
<require from="aurelia-kendoui-bridge/dropdownlist/dropdownlist"></require> | |
<div id="example"> | |
<div class="demo-section k-content wide"> | |
<div class="box wide"> | |
<div class="box-col"> | |
<h4>Layout: </h4> | |
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: 'Spain electricity production (GWh)'}" | |
k-data-source.bind="datasource" | |
k-legend.bind="{position: 'top'}" | |
k-series.bind="series" | |
k-value-axis.bind="valueAxis" | |
k-category-axis.bind="categoryAxis" | |
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="./customizing-templates.css!css"></require> | |
<require from="aurelia-kendoui-bridge/combobox/combobox"></require> | |
<require from="aurelia-kendoui-bridge/common/template"></require> | |
<div id="example cbx"> | |
<div class="demo-section k-content"> | |
<h4>Customers</h4> | |
<ak-combobox k-data-text-field="ContactName" | |
k-data-value-field="CustomerID" |
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-data-source.bind="datasource" | |
k-legend.bind="legend" | |
k-series-defaults.bind="seriesDefaults" | |
k-series.bind="series" | |
k-x-axis.bind="xAxis" | |
k-y-axis.bind="yAxis" | |
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/upload/upload"></require> | |
<div id="example"> | |
<div class="box"> | |
<h4>Information</h4> | |
<p> | |
The Upload can be used as a drop-in replacement | |
for file input elements. This "synchronous" mode does not require | |
special handling on the server. | |
</p> |
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> | |
<div id="example"> | |
<div class="demo-section k-content"> | |
<h4>Customers</h4> | |
<ak-combobox k-data-text-field="ContactName" | |
k-data-value-field="CustomerID" | |
k-height="400" | |
k-data-source.bind="dataSource" |
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: 'Spain electricity production (GWh)'}" | |
k-data-source.bind="datasource" | |
k-legend.bind="{position: 'top'}" | |
k-series-defaults.bind="{type: 'area'}" | |
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
<template> | |
<require from="aurelia-kendoui-bridge/calendar/calendar"></require> | |
<require from="aurelia-kendoui-bridge/common/template"></require> | |
<div id="example"> | |
<div class="demo-section k-content" style="text-align: center;"> | |
<h4>Disable weekends</h4> | |
<ak-calendar k-disable-dates.bind="['sa', 'su']"></ak-calendar> | |
<h4 style="margin-top:1em">Disable Federal Holidays in USA in 2015</h4> | |
<ak-calendar k-dates.bind="holidays" |
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="./area.css!css"></require> | |
<require from="aurelia-kendoui-bridge/draggable/draggable"></require> | |
<require from="aurelia-kendoui-bridge/drop-target/drop-target-area"></require> | |
<div id="example"> | |
<div class="demo-section k-content"> | |
<div ak-drop-target-area="k-filter: .test1, .test2" | |
k-on-dragenter.delegate="droptargetOnDragEnter($event.detail)" | |
k-on-dragleave.delegate="droptargetOnDragLeave($event.detail)" |