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>Balance</h4> | |
| <input ak-slider="k-increase-button-title: Right; | |
| k-decrease-button-title: Left; |
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/dialog/dialog"></require> | |
| <div id="example"> | |
| <div id="dialog" | |
| ak-dialog="k-widget.bind: dialog; | |
| k-width: 400px; | |
| k-title: Software Update; | |
| k-closable.bind: false; | |
| k-modal.bind: false; | |
| k-visible.bind: false; |
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: 'Site Visitors Stats \n /thousands/'}" | |
| k-legend.bind="{position: 'bottom'}" | |
| k-series-defaults.bind="seriesDefaults" | |
| k-series.two-way="series" | |
| k-value-axis.bind="valueAxis" | |
| k-category-axis.bind="categoryAxis" | |
| k-tooltip.bind="tooltip" | |
| view-model.ref="theChart"> |
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="category"></require> | |
| <div id="example"> | |
| <ak-grid k-pageable.bind="true" k-height.bind="500" k-toolbar.bind="['create']" k-editable.bind="true" k-data-source.bind="dataSource"> | |
| <ak-col k-field="ProductName" k-title="Product Name"></ak-col> | |
| <ak-col k-field="Category" k-title="Category" k-width="230px" k-editor.bind="categoryDropDownEditor" k-template.bind="categoryTemplate"></ak-col> | |
| <ak-col k-field="UnitPrice" k-title="Unit Price" k-format="{0:c}" k-width="130px"></ak-col> | |
| <ak-col k-command="destroy" k-title=" " k-width="150px"></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="aurelia-kendoui-bridge/grid/grid"></require> | |
| <require from="aurelia-kendoui-bridge/grid/col"></require> | |
| <ak-grid k-data-source.bind="datasource" k-pageable.bind="true" k-toolbar.bind="['create']" k-editable="inline"> | |
| <ak-col k-field="ProductName"></ak-col> | |
| <ak-col k-field="UnitPrice" k-title="Unit Price" k-format="{0:c}" k-width="120px"></ak-col> | |
| <ak-col k-field="UnitsInStock" k-title="Units In Stock" k-width="120px"></ak-col> | |
| <ak-col k-field="Discontinued" k-width="120px"></ak-col> | |
| <ak-col k-command.bind="['edit', 'destroy']" k-title=" " width="250px"></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="aurelia-kendoui-bridge/numerictextbox/numerictextbox"></require> | |
| <require from="./key-up"></require> | |
| <div id="example"> | |
| <div class="demo-section k-content"> | |
| <input id="numeric" type="number" ak-numerictextbox="k-value.two-way: value;" key-up style="width: 100%;"/> | |
| Current value: ${value} | |
| </div> |
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/common/template"></require> | |
| <div repeat.for="a of b"> | |
| <ak-grid k-data-source.bind="datasource" | |
| k-pageable.bind="{ input: true, numeric: false}" | |
| k-filterable.bind="true" | |
| k-sortable.bind="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
| .customer-photo { | |
| display: inline-block; | |
| width: 32px; | |
| height: 32px; | |
| border-radius: 50%; | |
| background-size: 32px 35px; | |
| background-position: center center; | |
| vertical-align: middle; | |
| line-height: 32px; | |
| box-shadow: inset 0 0 1px #999, inset 0 0 10px rgba(0,0,0,.2); |
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
| .customer-photo { | |
| display: inline-block; | |
| width: 32px; | |
| height: 32px; | |
| border-radius: 50%; | |
| background-size: 32px 35px; | |
| background-position: center center; | |
| vertical-align: middle; | |
| line-height: 32px; | |
| box-shadow: inset 0 0 1px #999, inset 0 0 10px rgba(0,0,0,.2); |
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="./b"></require> | |
| <b> | |
| <slot name="columns"></slot> | |
| </b> | |
| </template> |