Wicket Remove
compref
Source code

wicket.markup.html.form.TextArea

[back to the reference]

A TextArea is like a TextField, but is used for multiple rows of text.

multiple lines of text


Behind the Scenes

Example HTML

<textarea wicket:id="text" rows="6" cols="20">Input comes here</textarea>

Example Code

    // add a text area component that uses the model object's 'text' property.
    form.add(new TextArea("text"));

Further examples & and comments/explanations may be available in the source code.