TextField
text | readonly
Description
Single line text field; if readonly then it will not be editable.
Attributes
default
- capture.keyboard = text | url | visiblePassword | number | phone | email | datetime | address
Example of textField
{
"type": "string",
"$capture": {
"as": "text"
},
"$display": {},
"title": "Hello test"
}
Example of readonly textField
{
"type": "string",
"$capture": {
"as": "readonly"
},
"$display": {},
"title": "Hello test"
}