Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 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="./my-custom-element"></require>
  6.  
  7. <ak-grid k-data-source.bind="datasource">
  8. <ak-col k-title="First Name" k-field="FirstName"></ak-col>
  9. <ak-template for="detailTemplate">
  10. <customer-orders customer.bind="$this" orders.bind="Orders" firstname.bind="FirstName"></customer-orders>
  11. </ak-template>
  12. </ak-grid>
  13.  
  14. <style>
  15. .k-detail-cell .k-tabstrip .k-content {
  16. padding: 0.2em;
  17. }
  18. .employee-details ul
  19. {
  20. list-style:none;
  21. font-style:italic;
  22. margin: 15px;
  23. padding: 0;
  24. }
  25. .employee-details ul li
  26. {
  27. margin: 0;
  28. line-height: 1.7em;
  29. }
  30.  
  31. .employee-details label
  32. {
  33. display:inline-block;
  34. width:90px;
  35. padding-right: 10px;
  36. text-align: right;
  37. font-style:normal;
  38. font-weight:bold;
  39. }
  40. </style>
  41. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement