The TextField component
TextField components let the user enter text on a single line.
In addition to the properties listed below, this component inherits properties and methods from the superclass Component
. For example, any TextField component has a label
and defaultValue
property even though these are not explicitly listed here.
Properties
Name | Description | Datatype | Default |
---|---|---|---|
labelPosition | Position of the label with respect to the textfield. Can be 'right' , 'left' , 'top' or 'bottom' . | String | 'top' |
multiple | Whether or not multiple values can be entered. | Boolean | False |
See also
- Use a TextArea to allow for multiple lines of input text.