diff options
author | elmot <elmot@vaadin.com> | 2015-11-27 18:30:41 +0200 |
---|---|---|
committer | Ilia Motornyi <elmot@vaadin.com> | 2015-12-03 14:51:26 +0000 |
commit | 71fe8b49d0e5411ff37eef8101487c3f994b64de (patch) | |
tree | 00d2ec1cfc586f40414aa958245eee823df1f1f8 /documentation/layout | |
parent | 02956a9759cc08a1c218130cd622e9d05679fb96 (diff) | |
download | vaadin-framework-71fe8b49d0e5411ff37eef8101487c3f994b64de.tar.gz vaadin-framework-71fe8b49d0e5411ff37eef8101487c3f994b64de.zip |
BoV 7.6 update - change declarative prefixes (#19329)
Change-Id: Ic4cee6d2145867bea0d4e367f71c4d63c026ba04
Diffstat (limited to 'documentation/layout')
-rw-r--r-- | documentation/layout/layout-overview.asciidoc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/documentation/layout/layout-overview.asciidoc b/documentation/layout/layout-overview.asciidoc index ba1bb603ae..6481db6229 100644 --- a/documentation/layout/layout-overview.asciidoc +++ b/documentation/layout/layout-overview.asciidoc @@ -42,14 +42,14 @@ Or in the declarative format: [source, html] ---- -<v-vertical-layout> - <v-label>The Ultimate Cat Finder</v-label> - - <v-horizontal-layout> - <v-tree caption="Major Planets and Their Moons"/> - <v-panel/> - </v-horizontal-layout> -</v-vertical-layout> +<vaadin-vertical-layout> + <vaadin-label>The Ultimate Cat Finder</vaadin-label> + + <vaadin-horizontal-layout> + <vaadin-tree caption="Major Planets and Their Moons"/> + <vaadin-panel/> + </vaadin-horizontal-layout> +</vaadin-vertical-layout> ---- You will usually need to tune the layout components a bit by setting sizes, |