German Bisurgi
German Bisurgi
I am trying to reproduce the error but all seems to work like it should. Can you provide a complete example that i can use to reproduce this? With complete...
You are loading the JSONEditor in an asynchronous AJAX callback. Solution. Wait for json-editor "ready" event before working with it. ```javascript editor.on('ready', function () { editor.watch('root.lineOne.color', lineOneColorCallback.bind(editor)) }) ``` This...
In JSON Schema Draft 4, exclusiveMinimum and exclusiveMaximum work differently. There they are boolean values, that indicate whether minimum and maximum are exclusive of the value. [example](https://json-editor.github.io/json-editor/?data=N4Ig9gDgLglmB2BnEAuUMDGCA2MBGqIAZglAIYDuApomALZUCsIANOHgFZUZQD62ZAJ5gArlELwwAJzplsrEIgwALKrNShYUbFUIAVGuLZRBEXSnZceCiFMhUpsGhpBRDLk2cIx4bgOYOCgAmVERkItjiKIyMbHQ+MHQidKiMAAxxZAAeicmoAGwZID4Y2CKIMABuVACyCUkpKFBSIlRsJWUV1TXZuY3NrQC+w2yIymAUvA52UsgWPm5SZDxw8ApQqgyEeGBgUIjNZBAALCDDQA=)
@schmunk42 it is related. It allows to set or override the show_opt_in option in object editors. @kane-mason that PR does not allow to override the show_opt_in per single property
Take a look at `grid-strict` in [object](https://github.com/json-editor/json-editor#objects) ;-)
I can't reproduce the error. Are you using React.js? I ask because googling that error shows mostly react related issues after an upgrade. The most common source of problems comes...
Can you post a direct link to the [example page](https://json-editor.github.io/json-editor/) with your schema? You also opened another issue about values not appearing in a post request. Do you stringify the...
The editor just tells you that there are validation problems. It's up to you to allow or not the form submition. Also Backend validation should be a must.
I would first take a look at all the [places](https://github.com/json-editor/json-editor/search?q=simplemde) where simplemde is used in this repo to understand how it work and then give it a try.