diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/declarative/PotusCrud.html')
-rw-r--r-- | uitest/src/com/vaadin/tests/declarative/PotusCrud.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/declarative/PotusCrud.html b/uitest/src/com/vaadin/tests/declarative/PotusCrud.html new file mode 100644 index 0000000000..05acee9679 --- /dev/null +++ b/uitest/src/com/vaadin/tests/declarative/PotusCrud.html @@ -0,0 +1,14 @@ +<head> + <meta name="package-mapping" content="x:com.vaadin.tests.declarative"/> +</head> +<body> + <v-vertical-layout size-full margin="true" spacing> + <v-horizontal-layout spacing margin width-full> + <v-label size-auto>POTUS Database</v-label> + <v-button :expand _id="addNew">Add new</v-button> + </v-horizontal-layout> + <v-table _id="potusList" :expand selectable size-full/> + <x-potus-form _id="potusForm" /> + </v-vertical-layout> +</body> + |