This file contains 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> | |
<require from="./my-custom-element"></require> | |
<ak-grid k-data-source.bind="datasource"> | |
<ak-col k-title="First Name" k-field="FirstName"></ak-col> | |
<ak-template for="detailTemplate"> | |
<customer-orders customer.bind="$this" orders.bind="Orders" firstname.bind="FirstName"></customer-orders> |
This file contains 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/dateinput/dateinput"></require> | |
<div class="demo-section k-content"> | |
<h4>Enter a date</h4> | |
<input ak-date-input="k-format: MM/dd/yyyy" title="please enter date" style="width: 100%" /> | |
</div> | |
</template> |
This file contains 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/listbox/listbox"></require> | |
<require from="./style.css!css"></require> | |
<div class="demo-section k-content"> | |
<div> | |
<label for="optional" id="employees">Employees</label> | |
<label for="selected">Developers</label> | |
<br /> | |
<ak-list-box k-connect-with="selected" k-toolbar.bind="toolbar"> |
This file contains 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/mediaplayer/mediaplayer"></require> | |
<div class="demo-section k-content wide" style="max-width: 900px;"> | |
<div id="mediaPlayer" style="height:360px" | |
ak-mediaplayer="k-media.bind: { title: 'Recap of Progress', source: 'http://telerik-media.s3.amazonaws.com/digital-factory/digital-factory-720.mp4'}; | |
k-auto-play.bind: true; | |
k-navigatable.bind: true; | |
k-widget.bind:mediaPlayer"></div> |
This file contains 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 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/mediaplayer/mediaplayer"></require> | |
<require from="./logger"></require> | |
<div id="example"> | |
<div class="demo-section k-content"> | |
<div id="mediaPlayer" style="height:360px" ak-mediaplayer="k-media.bind: { title: 'Recap of Progress', source: 'https://www.youtube.com/watch?v=tc3xhD24iTU' }; | |
k-auto-play.bind: true; | |
k-navigatable.bind: true; | |
k-widget.bind: mediaPlayer" |
This file contains 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/mediaplayer/mediaplayer"></require> | |
<require from="aurelia-kendoui-bridge/listview/listview"></require> | |
<require from="aurelia-kendoui-bridge/common/template"></require> | |
<div id="mediaPlayer" style="height:360px" ak-mediaplayer="k-autoPlay.bind: true; k-widget.bind: mediaPlayer"> | |
</div> | |
<div class="k-list-container playlist"> | |
<ul id="listView" class="k-list"></ul> | |
<ak-list-view k-data-source.bind="videos" |
This file contains 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> | |
<require from="aurelia-kendoui-bridge/grid/grid-command"></require> | |
<h1>Multiselect</h1> | |
<button ak-button click.delegate="showSelection()">Show selection</button> | |
This file contains 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
<!-- put your view here --> | |
<template> | |
<labeL> | |
<input type="checkbox" checked.bind="preventDefault"/> | |
Prevent filter | |
</labeL> | |
<br> | |
<ak-drop-down-list k-data-text-field="omschrijving" |
This file contains 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" k-messages.bind="messages"> | |
<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> |
NewerOlder