Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <template>
  2. <require from="aurelia-kendoui-bridge/switch/switch"></require>
  3. <require from="./value-binding.css!css"></require>
  4.  
  5. <div id="example">
  6. <div class="demo-section k-content">
  7. <p>Notifications are ${isChecked ? 'enabled' : 'disabled'}</p>
  8. <input type="checkbox" checked.bind="isChecked"/>
  9.  
  10. <div class="settings-head"></div>
  11. <ul>
  12. <li>Notifications <input ak-switch="k-on-label.two-way: onLabel; k-checked.bind: true" ak-switch.ref="switch"/></li>
  13. </ul>
  14. <button click.delegate="changeLabel()">ChangeLabel</button>
  15. </div>
  16. </div>
  17. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement