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/multiselect/multiselect"></require> | |
| <require from="aurelia-kendoui-bridge/button/button"></require> | |
| <require from="aurelia-kendoui-bridge/responsivepanel/responsivepanel"></require> | |
| <button class="k-rpanel-toggle"><span class="k-icon k-i-hbars"></span></button> | |
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/responsivepanel/responsivepanel"></require> | |
| <require from="./style.css"></require> | |
| <div id="example"> | |
| <p> | |
| Resize your window to see the effect of the responsive panel | |
| </p> | |
| <button click.delegate="call()">Call</button> |
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-auto-bind.bind="false" | |
| k-series.bind="series" | |
| k-series-defaults.bind="{type: 'area'}" | |
| k-value-axis.bind="valueAxis" | |
| k-category-axis.bind="categoryAxis" |
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="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> |
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-col k-title="OrderId" k-field="OrderID"></ak-col> | |
| <ak-col> | |
| <ak-grid-command k-name="details" k-text="Details" k-click.call="details($event)"></ak-grid-command> | |
| </ak-col> |
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"> | |
| <button click.delegate="updateSliders()">Update sliders</button> | |
| <h4 style="padding-top: 2em;">Equalizer</h4> |