A Dojo mobile text area defines a text box containing one
or more lines of text.
Fields
- isExpandable
- A boolean value that indicates whether the height of the text
area can increase in response to user input. If the value is false,
a vertical scroll bar is present if needed. [///?? might not be correct]
- maxLength
- The maximum number of characters that can be in the text area.
Not all browsers support the limit.
- placeHolder
- A string for display in the text area when the area would otherwise
be empty. Not all browsers support this display.
- readOnly
- A Boolean value that indicates whether the text field is protected
from user input.
- text
- The string content of the area.
Example
Use of this widget requires a statement like this:
import dojo.mobile.widgets.DojoMobileTextArea;