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> | |
<input type="checkbox" checked.bind="enabled"></input>${enabled} | |
</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> | |
<input type="checkbox" checked.bind="enabled"></input>${enabled} | |
</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> | |
<input type="checkbox" checked.bind="enabled"></input>${enabled} | |
</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> | |
<input type="checkbox" checked.bind="enabled"></input>${enabled} | |
</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="./dynamic-element"></require> | |
<button click.trigger="changeModelOnTextBox()">Change Text</button> | |
<button click.trigger="toggle()">Toggle</button> | |
<div if.bind="show"> | |
Dynamic controls: | |
<div repeat.for="control of controls"> | |
${control.label} |
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="./dynamic-element"></require> | |
<button click.trigger="changeModelOnTextBox()">Change Text</button> | |
<button click.trigger="toggle()">Toggle</button> | |
<div if.bind="show"> | |
<div repeat.for="control of controls"> | |
<dynamic-element type.bind="control.type" model.bind="control.model"></dynamic-element> | |
</div> |