Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <template>
  2. <require from="aurelia-kendoui-bridge/grid/grid"></require>
  3. <require from="aurelia-kendoui-bridge/grid/col"></require>
  4. <require from="aurelia-kendoui-bridge/common/template"></require>
  5. <require from="aurelia-kendoui-bridge/button/button"></require>
  6. <require from="aurelia-kendoui-bridge/grid/grid-command"></require>
  7.  
  8.  
  9. <ak-grid k-data-source.bind="datasource" k-on-data-bound.delegate="onDataBound($event.detail)">
  10. <ak-col k-title="Contact Name" k-field="ContactName"></ak-col>
  11. <ak-col k-title="Contact Name">
  12. <ak-template>
  13. <button ak-button="k-enabled.bind: IsEnabled" k-on-click.delegate="loadPdf($event)">Hello world</button>
  14. </ak-template>
  15. </ak-col>
  16. <ak-col k-title="TestPDF1">
  17. <ak-template>
  18. <button ak-button="k-enabled.bind: IsEnabled" k-on-click.delegate="loadPdf($event)">Hello world</button>
  19. </ak-template>
  20. </ak-col>
  21. <ak-col k-title="Test-command">
  22. <ak-grid-command k-name="details" k-text="Details" k-click.call="details($event)"></ak-grid-command>
  23. </ak-col>
  24. </ak-grid>
  25. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement