Advertisement
Guest User

Untitled

a guest
Jul 13th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="design-properties" content="{&quot;RULERS_VISIBLE&quot;:true,&quot;GUIDELINES_VISIBLE&quot;:false,&quot;SNAP_TO_OBJECTS&quot;:true,&quot;SNAP_TO_GRID&quot;:true,&quot;SNAPPING_DISTANCE&quot;:10,&quot;GENERATE_GETTERS&quot;:false,&quot;JAVA_SOURCES_ROOT&quot;:&quot;src/main/java&quot;,&quot;THEME&quot;:&quot;valo&quot;}">
  6. <meta name="vaadin-version" content="8.0.5">
  7. </head>
  8. <body>
  9. <vaadin-vertical-layout height="983px">
  10. <vaadin7-label width="206px" plain-text>
  11. Mandanten Übersicht
  12. </vaadin7-label>
  13. <vaadin-button plain-text _id="save">
  14. Speicher
  15. </vaadin-button>
  16. <vaadin-text-field caption="Name" _id="name"></vaadin-text-field>
  17. <vaadin-text-field caption="Anmerkung" _id="anmerkung"></vaadin-text-field>
  18. <vaadin-grid data-item-type="at.nisteria.nisteria.Mandant" _id="grid">
  19. <table>
  20. <colgroup>
  21. <col column-id="name" sortable>
  22. <col column-id="anmerkung" sortable>
  23. </colgroup>
  24. <thead>
  25. <tr default>
  26. <th plain-text column-ids="name">Name</th>
  27. <th plain-text column-ids="anmerkung">Anmerkung</th>
  28. </tr>
  29. </thead>
  30. <tbody></tbody>
  31. </table>
  32. </vaadin-grid>
  33. </vaadin-vertical-layout>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement