summaryrefslogtreecommitdiffstats
path: root/documentation/components/components-textarea.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-textarea.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-textarea.asciidoc')
-rw-r--r--documentation/components/components-textarea.asciidoc91
1 files changed, 0 insertions, 91 deletions
diff --git a/documentation/components/components-textarea.asciidoc b/documentation/components/components-textarea.asciidoc
deleted file mode 100644
index 7811c7ba4b..0000000000
--- a/documentation/components/components-textarea.asciidoc
+++ /dev/null
@@ -1,91 +0,0 @@
----
-title: TextArea
-order: 10
-layout: page
----
-
-[[components.textarea]]
-= [classname]#TextArea#
-
-[classname]#TextArea# is a multi-line version of the [classname]#TextField#
-component described in
-<<dummy/../../../framework/components/components-textfield#components.textfield,"TextField">>.
-
-The following example creates a simple text area:
-
-
-[source, java]
-----
-// Create the area
-TextArea area = new TextArea("Big Area");
-
-// Put some content in it
-area.setValue("A row\n"+
- "Another row\n"+
- "Yet another row");
-----
-See the http://demo.vaadin.com/book-examples-vaadin7/book#component.textarea.basic[on-line example, window="_blank"].
-
-The result is shown in <<figure.components.textarea>>.
-
-[[figure.components.textarea]]
-.[classname]#TextArea# Example
-image::img/textarea-basic.png[]
-
-You can set the number of visible rows with [methodname]#setRows()# or use the
-regular [methodname]#setHeight()# to define the height in other units. If the
-actual number of rows exceeds the number, a vertical scrollbar will appear.
-Setting the height with [methodname]#setRows()# leaves space for a horizontal
-scrollbar, so the actual number of visible rows may be one higher if the
-scrollbar is not visible.
-
-You can set the width with the regular [methodname]#setWidth()# method. Setting
-the size with the __em__ unit, which is relative to the used font size, is
-recommended.
-
-[[components.textarea.wordwrap]]
-== Word Wrap
-
-The [methodname]#setWordwrap()# sets whether long lines are wrapped (
-[literal]#++true++# - default) when the line length reaches the width of the
-writing area. If the word wrap is disabled ( [literal]#++false++#), a vertical
-scrollbar will appear instead. The word wrap is only a visual feature and
-wrapping a long line does not insert line break characters in the field value;
-shortening a wrapped line will undo the wrapping.
-
-
-[source, java]
-----
-TextArea area1 = new TextArea("Wrapping");
-area1.setWordwrap(true); // The default
-area1.setValue("A quick brown fox jumps over the lazy dog");
-
-TextArea area2 = new TextArea("Nonwrapping");
-area2.setWordwrap(false);
-area2.setValue("Victor jagt zw&ouml;lf Boxk&auml;mpfer quer "+
- "&uuml;ber den Sylter Deich");
-----
-See the http://demo.vaadin.com/book-examples-vaadin7/book#component.textarea.wordwrap[on-line example, window="_blank"].
-
-The result is shown in <<figure.components.textarea.wordwrap>>.
-
-[[figure.components.textarea.wordwrap]]
-.Word Wrap in [classname]#TextArea#
-image::img/textarea-wordwrap.png[]
-
-
-[[components.textarea.css]]
-== CSS Style Rules
-
-
-[source, css]
-----
-.v-textarea { }
-----
-
-The HTML structure of [classname]#TextArea# is extremely simple, consisting only
-of an element with [literal]#++v-textarea++# style.
-
-CSS Styling
-
-