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="./list"></require> | |
| <div>List</div> | |
| <list></list> | |
| </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
| .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> | |
| <form submit.delegate="submit()"> | |
| <!--<ul><li repeat.for="error of controller.errors">${error.message}</li></ul>--> | |
| <div class="form-group"> | |
| <label class="control-label" for="first">First Name</label> | |
| <input type="text" class="form-control" id="first" placeholder="First Name" | |
| value.bind="firstName & validate"> | |
| </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="./piece"></require> | |
| <table> | |
| <tr repeat.for="item of items"> | |
| <td as-element="piece" | |
| repeat.for="itemm of item" | |
| style="background: ${itemm.color}"> | |
| <span> |
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> | |
| <label repeat.for="option of options"> | |
| <input type="radio" name="periodOptions" model.bind="option" checked.bind="$parent.selectedOption" click.delegate="clicked()"/> | |
| ${option.text} | |
| </label> | |
| <p><pre><code>${selectedOption | stringify}</code></pre></p> | |
| </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
| 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/treeview/treeview"></require> | |
| <require from="aurelia-kendoui-bridge/common/template"></require> | |
| <div id="example"> | |
| <div class="demo-section k-content"> | |
| <h4>Treeview One</h4> | |
| <ak-treeview | |
| k-data-source.bind="data" | |
| k-drag-and-drop.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
| <template> | |
| <require from="aurelia-kendoui-bridge/grid/grid"></require> | |
| <require from="aurelia-kendoui-bridge/grid/col"></require> | |
| <div> | |
| au: <input type="text" id="inpTest" blur.delegate="onBlur($event)"> | |
| </div> | |
| <div> | |
| jquery: <input type="text" id="inpTestJq" blur.delegate="onBlur($event)"> |
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"></require> | |
| <require from="aurelia-kendoui-bridge/window/window"></require> | |
| <require from="aurelia-kendoui-bridge/button/button"></require> | |
| <require from="./my-component"></require> | |
| <div id="example"> | |
| <div id="window" |
OlderNewer