nos-forms-jquery
Version:
Build and validate DRY html forms in minutes with JSON, jQuery and Bootstrap
43 lines (38 loc) • 710 B
Markdown
# Type #
## range ##
#### Example with all options ####
```javascript
{
"name": "rangeExample",
"id": "rangeId",
"type": "range",
"label": "Range Example",
"required": true,
"classname": "",
"formGroup": true,
"autofocus": false,
"disabled": false,
"title": "Range Example",
"data": {
"field": 0,
"testing": 123,
},
"min": 1,
"max": 100,
"step": 1,
"value": 25
}
```
#### More practical example ####
```javascript
{
"name": "rangeExample",
"type": "range",
"label": "Range Example",
"required": true,
"min": 1,
"max": 100,
"step": 1,
"value": 25
}
```