← Back
TextInput
A user-editable text input field.
Input:
[var name:"textVal" value:"Hello World" /]
[TextInput value:textVal /]Output:
Props
- value
stringThe current value of the text entry box.
- Example:
x
- Example:
- pattern
objectA regex pattern to validate input field
- Example:
/w+/
- Example:
- patternMismatchMessage
stringA string message to display after a pattern mismatch. Default is: 'Input value is not valid'
- Example:
Value doesnt match pattern
- Example: