summaryrefslogtreecommitdiffstats
path: root/documentation/components/components-textarea.asciidoc
diff options
context:
space:
mode:
authorPekka Hyvönen <pekka@vaadin.com>2017-01-05 18:09:32 +0200
committerIlia Motornyi <elmot@vaadin.com>2017-01-05 18:09:32 +0200
commit4130f1d87d6ab387a363a4e44e8746eddc049d13 (patch)
tree0a6cb8b997f95c710dbac269bfba3615eb74df6a /documentation/components/components-textarea.asciidoc
parent11f10b827e92ed7c07d6584a181f7f1374e8109b (diff)
downloadvaadin-framework-4130f1d87d6ab387a363a4e44e8746eddc049d13.tar.gz
vaadin-framework-4130f1d87d6ab387a363a4e44e8746eddc049d13.zip
Update component docs for 8 except Grid
Diffstat (limited to 'documentation/components/components-textarea.asciidoc')
-rw-r--r--documentation/components/components-textarea.asciidoc6
1 files changed, 2 insertions, 4 deletions
diff --git a/documentation/components/components-textarea.asciidoc b/documentation/components/components-textarea.asciidoc
index 2f2047b7fe..9329f38d16 100644
--- a/documentation/components/components-textarea.asciidoc
+++ b/documentation/components/components-textarea.asciidoc
@@ -29,7 +29,6 @@ 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>>.
@@ -62,15 +61,14 @@ shortening a wrapped line will undo the wrapping.
[source, java]
----
TextArea area1 = new TextArea("Wrapping");
-area1.setWordwrap(true); // The default
+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.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>>.