json-forms
json-forms copied to clipboard
JSON Schema to HTML form generator, supporting dynamic subschemas (on the fly resolution). Extensible and customizable library with zero dependencies. Bootstrap add-ons provided
I used the below schema to test in http://brutusin.org/json-forms/ ``` { "type": "object", "properties": {"prop1": {"type": "string"}}, "required": ["prop1"] } ``` Found that `prop1` cannot be validated. it don't return...
I think it could be really good to add support of a 'password. I'm not a good JS developper so I'm having troubles to create a nice PR for this...
Hi, I've created a Form with couple of array's. One of them has three dropdown where the second depends on the first and the third on the second. I've created...
Feature request: Is it possible to make drag and drop possible in array items?
I have been trying to intergrate this library into my project lately, it works mostly fine, however some fields from my schema are not generated correctly. mostly array fields with...
This is a rather advanced thing, and I'm not sure it's totally possible within the specs, but here's the use case. I got a schema that describes an object, where...
getData bombs out on an item list with empty elements. I added several tests for "s" before additional tests on properties of "s". This allows dependency changes to continue even...
Hello folks! It looks like IE blows up when you try to set `Element.type` directly as an input type that is unsupported (such as `"date"`). This change forces it to...
Given schema provided at http://brutusin.org/json-forms/#7 and Initial data `{ "p1": "test", "p2": true }` Generated form still creates single element with dropdown in order to choose the object type and...
I have 3 schemas (A, B and C). each has one property each. Where as C is referencing B and B is referencing A. A is Parent, B is child...