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