TextareaInputComponent
Description
Renders a multi-line text input box to collect user input. Change event is fired after user edits the content and removes the focus from the box.
Pre/postChange functions can be used to make data validation.
Options
- name
- The name of the component
- type
textareaInputComponent
- listeners
- Array - Parameters who this component will react to
- parameter
- Variable where the input is stored
- htmlObject
- Id of the component (usually a div or a span tag) to be replaced by the result
- refreshPeriod
- Time in seconds for this component to refresh. Default is 0 (disabled)
- charWidth
- Width of this component (in number of characters).
- maxChars
- Maximum number of characters allowed. By default this is not set (no restriction)
- executeAtStart
- True to execute the component at start, false otherwise
- tooltip
- Tooltip to be displayed when mouse hovers
- preExecution
- Function - Function to be called before the component is executed
- postExecution
- Function - Function to be called after the component is executed
- preChange
- Function - Function to be called before the component is changed
- postChange
- Function - Function to be called after the component is changed
Sample