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> | |
| <div id="example"> | |
| <div class="demo-section k-content"> | |
| <h4>Treeview One</h4> | |
| <ak-treeview | |
| k-data-text-field.bind="dtf" | |
| k-data-source.bind="data" | |
| k-template.bind="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
| <template> | |
| <div id="example" element.ref="treeWrap"> | |
| </div> | |
| </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
| <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
| 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
| 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> | |
| <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="./subpark"></require> | |
| <require from="./frontpark"></require> | |
| <frontpark class="wrap"></frontpark> | |
| <subpark class="wrap"></subpark> | |
| </template> |