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/editor/editor"></require> | |
<div id="example"> | |
<textarea ak-rich-editor value.bind="bodyContent" style="height:440px"> | |
</textarea> | |
</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/datepicker/datepicker"></require> | |
<require from="aurelia-kendoui-bridge/common/template"></require> | |
<ak-template id="footerTemplate"> | |
<button type="button">Click me</button> | |
</ak-template> | |
<div id="example"> | |
<div class="demo-section k-content"> | |
<h4>Start date:</h4> | |
<input ak-datepicker="k-value.bind : '10/10/2011'; |
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> | |
<h1>${message}</h1> | |
<!-- https://gist.github.com/jdanyow/1ae985e6c943885496e8 --> | |
</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/dropdownlist/dropdownlist"></require> | |
<div id="example"> | |
<div id="cap-view" class="demo-section k-content"> | |
<h4>Customize your Kendo Cap</h4> | |
<div ref="cap" id="cap" class="black-cap"></div> | |
<h4>Cap Color</h4> | |
<ak-drop-down-list k-data-text-field="text" | |
k-data-value-field="value" |
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); |