You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PotusForm.html 869B

12345678910111213141516
  1. <v-vertical-layout _id="form" spacing margin>
  2. <v-horizontal-layout spacing>
  3. <v-text-field _id="firstName" caption="First Name" null-representation="" width="300px" />
  4. <v-text-field _id="lastName" caption="Last Name" null-representation="" width="300px" />
  5. </v-horizontal-layout>
  6. <v-horizontal-layout spacing>
  7. <v-combo-box _id="party" caption="Party" width="300px" />
  8. <v-popup-date-field _id="tookOffice" caption="Took Office" />
  9. <v-popup-date-field _id="leftOffice" caption="Left Office" />
  10. </v-horizontal-layout>
  11. <v-horizontal-layout spacing width-full>
  12. <v-button _id="save" style-name="primary">Save</v-button>
  13. <v-button _id="revert">Revert</v-button>
  14. <v-button _id="delete" style-name="danger" :expand :right>Delete</v-button>
  15. </v-horizontal-layout>
  16. </v-vertical-layout>