aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/com/vaadin/tests/declarative/DeclarativeEditorInitial.html
blob: 17f7d6aa59fa31e56bafe79fc0cf81903920d501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<v-vertical-layout size-full margin spacing>
    <v-horizontal-layout spacing margin width-full>   
        <v-label size-auto>POTUS Database</v-label>
        <v-button :expand>Add new</v-button>
    </v-horizontal-layout>
    <v-table _id="potusList" :expand selectable size-full />
    <v-vertical-layout _id="form" spacing margin>
        <v-horizontal-layout spacing>   
            <v-text-field caption="First Name" width="300px" />
            <v-text-field caption="Last Name" width="300px" />
        </v-horizontal-layout>
        <v-horizontal-layout spacing>   
            <v-combo-box caption="Party" width="300px" />
            <v-popup-date-field caption="Took Office" />
            <v-popup-date-field caption="Left Office" />
        </v-horizontal-layout>
        <v-horizontal-layout spacing width-full>  
            <v-button style-name="primary">Save</v-button>
            <v-button>Revert</v-button>
            <v-button :expand :right>Delete</v-button>
        </v-horizontal-layout>
    </v-vertical-layout>
</v-vertical-layout>