nos-forms-jquery
Version:
Build and validate DRY html forms in minutes with JSON, jQuery and Bootstrap
37 lines (32 loc) • 630 B
Markdown
# Type #
## hidden ##
#### Example with all options ####
```javascript
{
"name": "hiddenExample",
"id": "hiddenId",
"type": "hidden",
"label": "Hidden Example",
"title": "Hidden Example",
"required": true,
"classname": "form-control",
"data": {
"field": 0,
"testing": 123,
},
"autofocus": false,
"disabled": false,
"readonly": false,
"formGroup": true,
"minlength": "",
"maxlength": "",
"value": ""
}
```
#### More practical example ####
```javascript
{
"name": "hiddenExample",
"type": "hidden"
}
```