-
Notifications
You must be signed in to change notification settings - Fork 4
TextArea
Lateef Ojulari edited this page Dec 19, 2019
·
3 revisions
A TextArea is a text input control that allows a user enter multiple lines of text. The size of the input area an be specified by widget styling or by setting the associated dimension attributes – rows and columns. When a user enters text with rows more that set for the control, a vertical scroll bar appears and the TextArea window scrolls to the row of the new text being entered; the TextArea is not resized.
This component binds to a String object.
Listing 1: TextArea UPL
!ui-textarea:frmNotes
caption:$s{Notes} binding:notes
rows:6 columns:32
| Name | Required | Type | Description |
|---|---|---|---|
| columns | false | Integer | Specifies the number of character columns that the text area should have. |
| rows | false | Integer | Specifies the number of rows that the text area should have. |
| minLen | false | Integer | Specifies the minimum number of characters this control can accept. The length of input text is checked during page validation only. |
| maxLen | false | Integer | Specifies the maximum number of characters this control can accept. This attribute restricts the number of characters that can be input by the user. It is also checked during page validation. |
| wordWrap | false | Boolean | Indicates whether input text should be automatically wrapped when character count of a row exceeds the text area columns. Defaults to 'true'. |
| scrollToEnd | false | Boolean | Indicates whether text area window should be scrolled to make the last text row visible any time the control is rendered. Defaults to 'false'. |
| required | false | Boolean | Indicates if an input value for this control is required. It is taken into consideration during form validation. Defaults to 'false'. |
- Unify Container
- Unify Component
- Unify Page Language
- Core Components
-
Web Components
-
Basic Widgets
- AssignmentBox
- Button
- CheckBox
- CheckList
- DateField
- DecimalField
- DropdownCheckList
- DynamicField
- FileAttachment
- FileDownload
- FileUpload
- Image
- IntegerField
- Label
- MoneyField
- MultiDynamic
- MultiSelect
- NameField
- PasswordField
- Picture
- Rack
- RadioButtons
- SearchField
- SingleSelect
- Table
- TextArea
- TextField
- TimeField
- WordField
- Container Widgets
- Layout
-
Controllers
- PageController
- ResourceController
- RemoteCallController
- PlainController
-
Basic Widgets