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/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> | |
<router-view></router-view> | |
</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> | |
<router-view></router-view> | |
</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> | |
<router-view></router-view> | |
</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> | |
<h4>Bootstrap Radio Button Groups and Aurelia</h4> | |
<div class="container"> | |
<div class="row"> | |
<div class="btn-group" data-toggle="buttons"> | |
<h5>Fancy Bootstrapped Radio Buttons</h5> | |
<label repeat.for="option of options" | |
class="btn btn-sm btn-default ${option.value === selectedOption.value ? 'active' : ''}"> | |
<input type="radio" | |
name="bootstrapOptions" |
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> | |
<nav> | |
<ul> | |
<li repeat.for="x of router.navigation"> | |
<a href.bind="x.href">${x.title}</a> | |
</li> | |
</ul> | |
</nav> | |
<router-view></router-view> | |
</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> | |
<nav> | |
<ul> | |
<li repeat.for="x of router.navigation"> | |
<a href.bind="x.href">${x.title}</a> | |
</li> | |
</ul> | |
</nav> | |
<router-view></router-view> | |
</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="pie-chart"></require> | |
<h3>App.js</h3> | |
<pie-chart some-arg="someValue"></pie-chart> | |
</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> | |
<h3>App.js</h3> | |
<div style="border: 1px inset; padding: 5px;"> | |
<compose view-model="./generic-group-by" model.two-way="model"></compose> | |
</div> | |
<br /> | |
<div> | |
<h4>This is all in the parent</h4> | |
Selected Value: ${model.selectedValue} <br /> | |
</div> |
OlderNewer