summaryrefslogtreecommitdiffstats
path: root/documentation/components/components-nativeselect.asciidoc
diff options
context:
space:
mode:
authorIlia Motornyi <elmot@vaadin.com>2015-12-03 14:59:05 +0000
committerVaadin Code Review <review@vaadin.com>2015-12-03 14:59:12 +0000
commit2af72ba9636bec70046394c41744f89ce4572e35 (patch)
treeccb3dc2d2239585f8c3f79eb5f131ff61ca9ce86 /documentation/components/components-nativeselect.asciidoc
parent8aa5fabe89f2967e966a64842a608eceaf80d08f (diff)
downloadvaadin-framework-2af72ba9636bec70046394c41744f89ce4572e35.tar.gz
vaadin-framework-2af72ba9636bec70046394c41744f89ce4572e35.zip
Revert "Merge branch 'documentation'"7.6.0.beta2
This reverts commit f6874bde3d945c8b2d1b5c17ab50e2d0f1f8ff00. Change-Id: I67ee1c30ba3e3bcc3c43a1dd2e73a822791514bf
Diffstat (limited to 'documentation/components/components-nativeselect.asciidoc')
-rw-r--r--documentation/components/components-nativeselect.asciidoc49
1 files changed, 0 insertions, 49 deletions
diff --git a/documentation/components/components-nativeselect.asciidoc b/documentation/components/components-nativeselect.asciidoc
deleted file mode 100644
index f27c797eb9..0000000000
--- a/documentation/components/components-nativeselect.asciidoc
+++ /dev/null
@@ -1,49 +0,0 @@
----
-title: NativeSelect
-order: 18
-layout: page
----
-
-[[components.nativeselect]]
-= [classname]#NativeSelect#
-
-[classname]#NativeSelect# is a drop-down selection component implemented with
-the native selection input of web browsers, using the HTML
-[literal]#++<select>++# element.
-
-
-[source, java]
-----
-// Create the selection component
-NativeSelect select = new NativeSelect("Native Selection");
-
-// Add some items
-select.addItems("Mercury", "Venus", ...);
-----
-
-The [methodname]#setColumns()# allows setting the width of the list as
-"columns", which is a measure that depends on the browser.
-
-[[figure.components.nativeselect.basic]]
-.The [classname]#NativeSelect# Component
-image::img/nativeselect-basic.png[]
-
-Common selection component features are described in
-<<dummy/../../../framework/components/components-selection#components.selection,"Selection
-Components">>.
-
-== CSS Style Rules
-
-
-[source, css]
-----
-.v-select {}
- .v-select-select {}
-----
-
-The component has a [literal]#++v-select++# overall style. The native
-[literal]#++select++# element has [literal]#++v-select-select++# style.
-
-
-
-