nos-forms-jquery
Version:
Build and validate DRY html forms in minutes with JSON, jQuery and Bootstrap
39 lines (34 loc) • 655 B
Markdown
# Type #
## time ##
#### Example with all options ####
```javascript
{
"name": "timeExample",
"id": "timeId",
"type": "time",
"label": "Time Example",
"title": "Time Example",
"required": true,
"classname": "form-control",
"autofocus": false,
"disabled": false,
"readonly": false,
"formGroup": true,
"data": {
"field": 0,
"testing": 123,
},
"min": "",
"max": "",
"value": ""
}
```
#### More practical example ####
```javascript
{
"name": "timeExample",
"type": "time",
"label": "Time Example",
"required": true
}
```