json-editor
json-editor copied to clipboard
JSON Schema Based Editor
From https://github.com/swagger-api/swagger-editor/issues/529#issuecomment-119142733 If `readOnly` property is present for an array, it should not be possible to add items to that array.
Currently Select2 is completely bugged. Selected item doesn't get set at startup, Neither does the returned json from the editor when you submit the form when another item was set...
 I just include only single json editor file in my app manually. In chrome it's working fine, but in Firefox it's thrown...
 var editor = new JSONEditor(document.getElementById(name + 'JsonEditor'), {}); $jsonEditorDiv.data("editor", editor); $jsonEditorDiv.data("textarea-dom", $(this).find("textarea")); if (jsonStr != null && jsonStr.length > 0) { var json = null; try { json =...
``` json { "type": "string", "format": "color", "enum": ["#0000ff","#ff0000","#00ff00"] } ``` This should render as a radio group with the colors shown in small squares.
I've noticed two issues when using **patternProperties**: 1. The generated form does not show the value (regex actual match) for keys. In the example below, I would want to see...
With the follwing source i would expect that the fields are in one row and two columns, but they won't. I read multiple posts from this project, but had no...
I've a application deployed in JBOSS via EAR. I've put the SVG files in "WebContent\scripts\img" directory. Json editor script files in "WebContent\scripts". My jsp in "WebContent". Icon not showing up.
` if(schema.$ref && typeof schema.$ref !== "object" && schema.$ref.substr(0,1) !== "#" && schema.$ref.substr(0,3) !== "urn" && !this.refs[schema.$ref]) { refs[schema.$ref] = true; }`