brutusin / json-forms

JSON Schema to HTML form generator, supporting dynamic subschemas (on the fly resolution). Extensible and customizable library with zero dependencies. Bootstrap add-ons provided
http://brutusin.org/json-forms
Apache License 2.0
608 stars 168 forks source link

Support for html5 date datatype #19

Closed fuhrysteve closed 8 years ago

fuhrysteve commented 8 years ago

For instance this valid JSON Schema:

"start": {
    "format": "date",
    "title": "end_date",
    "type": "string"
}

Should render something along the lines of:

<input type="date" name="start">
fuhrysteve commented 8 years ago

This is already supported, see #20 for details