diff options
author | Marko Gronroos <magi@vaadin.com> | 2016-07-25 00:00:36 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2016-08-05 10:19:47 +0300 |
commit | 4a4d05b0354829df86c4f106868d421dca349b34 (patch) | |
tree | db70be8fce2298dbf427775f07b1146e82c66e33 /documentation/components/components-nativeselect.asciidoc | |
parent | 3ea6a0087b140a13ed0685afa2ffe08a45b82719 (diff) | |
download | vaadin-framework-4a4d05b0354829df86c4f106868d421dca349b34.tar.gz vaadin-framework-4a4d05b0354829df86c4f106868d421dca349b34.zip |
Rescaled images in layout chapter. Various small formatting fixes. Updated history and other matters in introduction.
Change-Id: I0d5e76f7fb07f967dd04941a23e79dfb30049731
Diffstat (limited to 'documentation/components/components-nativeselect.asciidoc')
-rw-r--r-- | documentation/components/components-nativeselect.asciidoc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/documentation/components/components-nativeselect.asciidoc b/documentation/components/components-nativeselect.asciidoc index 2e97ccac42..feade116c9 100644 --- a/documentation/components/components-nativeselect.asciidoc +++ b/documentation/components/components-nativeselect.asciidoc @@ -20,7 +20,8 @@ the native selection input of web browsers, using the HTML [source, java] ---- // Create the selection component -NativeSelect<String> select = new NativeSelect<>("Native Selection"); +NativeSelect<String> select = + new NativeSelect<>("Native Selection"); // Add some items select.setItems("Mercury", "Venus", ...); @@ -31,7 +32,7 @@ The [methodname]#setColumns()# allows setting the width of the list as [[figure.components.nativeselect.basic]] .The [classname]#NativeSelect# Component -image::img/nativeselect-basic.png[width=20%, scaledwidth=40%] +image::img/nativeselect-basic.png[width=20%, scaledwidth=35%] Common selection component features are described in <<dummy/../../../framework/components/components-selection#components.selection,"Selection Components">>. |