json-editor
json-editor copied to clipboard
JSON Schema Based Editor
I have noticed a long-standing problem that adding an "Object Properties" property will cause SCEditor to no longer accept input. Also, perhaps unrelated, I'm getting many errors on load after...
If I want to show an option of a select only if another field has a certain value, I can do this (using the Swig template engine): ``` "outerobject": {...
Is it possible to detect changes as user types in text in the text input. Currently 'changes' event fires only when user leaves the text input, e.g. clicks away.
fix bug when editing select fields via json edit button manually where output value of editor does not match new value in the manual edit or shown field value
Hello. I'm trying to add custom types to the editor and export/import not only the values, but the current state of all the types. I tried a lot of thing...
Hi, Is there a way to choose which of a "oneOf" is used when using startval? If I have a schema like: `fields: { type: "array", items: { type: "object",...
How can i use $ref and watch functionality together? http://jeremydorn.com/json-editor/?schema=N4IgLgngDgpiBcID2AjAVjAxmEAacAlmADZyIDCSAdgGYEDmArgE4CGYB1eIUzSszDjADOCUAQAmY8NDIhhYZgSr1uHEnICqVAgEdGMAAQBJKQF98kWNKtyFSlWqKkEIACqzuMKowC2CAG0QAEFuACFuchAAXXwJGBpWRmIcRFCLeRgwDhVReFBbV3tlVXwAEmYE1wBiAHp4uh0OamFa3iQAN0kYZmBgWzMzbgB3dkwACxtPRHau+OYAfSIYXwA6QsGMhuUiTio80Fnu5lD8mWtEVAxsbnaBIQOQAA8XqYv5RRKQTfwj+YizoVLugsDhfnx7gQRNIILC3nZPo4fjw+HMelFAdNkCCbuD+D0HtIAF4k+FFRGqTaDIAAA=&value=N4IglgJiBcIgNCALgTwA4FMYgEIJAM4ZJJgB2A5gdiAL5AAA&theme=bootstrap2&iconlib=fontawesome4&object_layout=normal&show_errors=interaction
Key names containing a dot are displayed truncated after the last dot. Culprit is the line ``` this.key = this.path.split('.') ``` BTW: This also seems to be an issue at...
{ "title":"xyz", "type":"object", "properties":{ "id":{ "type":"string" }, "friend":{ "type":"string" }, "Attributes":{ "type":"object", "oneOf":[ { "type":"object", "title":"abc", "properties":{ "name":{ "type":"string", "default":"qrs" }, "age":{ "type":"number" } } } ] } } }...
Hello, I'm trying to display a multiple checkbox choice for an enum. But if my enum is a reference it is not rendering it as a multiple checkbox. Here is...