You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider I have a json schema as below:
.......
"properties" : {
"name": {
"type":"string", "hide":"true"
}
......
},
"required": ["name"]
The name field is hidden, but also required.
I was using angular-schema-form previously, where name field was not displayed in UI and also not validated.
I migrated to json-editor, now the name filed is not displayed, however, name is validated and required error message is shown in UI.
Any approach to prevent hidden fields from being validated ?
The text was updated successfully, but these errors were encountered:
Consider I have a json schema as below:
.......
"properties" : {
"name": {
"type":"string",
"hide":"true"
}
......
},
"required": ["name"]
The name field is hidden, but also required.
I was using angular-schema-form previously, where name field was not displayed in UI and also not validated.
I migrated to json-editor, now the name filed is not displayed, however, name is validated and required error message is shown in UI.
Any approach to prevent hidden fields from being validated ?
The text was updated successfully, but these errors were encountered: