Guest User

Untitled

a guest
Feb 8th, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. <listbox
  2.  
  3. model="@bind(vmo.listJobOrders)"
  4. onDoubleClick="@command('cerrarModal') @global-command('SeleccionarJobOrder', newJobOrder=vmo.jobOrderSelected)"
  5. selectedItem="@bind(vmo.jobOrderSelected)"
  6. mold="paging"
  7. pageSize="6" emptyMessage="Empty">
  8.  
  9.  
  10.  
  11.  
  12. <listhead>
  13. <listheader label="Order"
  14. width="20%" />
  15. <listheader label="Costumer"
  16. width="20%" />
  17. <listheader label="Supplier"
  18. width="20%" />
  19. <listheader label="Description"
  20. width="50%" />
  21. </listhead>
  22. <template name="model" var="item">
  23. <listitem>
  24. <listcell
  25. label="@bind(item.order)">
  26. </listcell>
  27. <listcell
  28. label="@bind(item.customer)">
  29. </listcell>
  30. <listcell
  31. label="@bind(item.supplier)" >
  32. </listcell>
  33. <listcell
  34. label="@bind(each.description)" >
  35. </listcell>
  36. </listitem>
  37. </template>
  38. </listbox>
Add Comment
Please, Sign In to add comment