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