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
i want to create multiple forms based on just parts of the schema, but of course i dont want to reinvent the wheel having to extract all referenced objects from a starting property. is it possible to tell rjsf which properties to consturct a form for ?
The text was updated successfully, but these errors were encountered:
@dberardo-com unfortunately there isn't a simple way to do what you need. Especially if the different parts of the json schema that you don't want to show would cause validations errors. It IS possible to use the uiSchema to hide fields via the hidden widget but if the fields that are hidden have required data in them, then you'll have to provide a transformError function on each form to filter out the errors you don't want to see.
Prerequisites
What theme are you using?
core
What is your question?
is it possible to let rjsf know which part of a json schema to select in order to create the form ?
my use case is the following. i have got an auto generated, big json schema, like in here: https://github.com/charlypoly/graphql-to-json-schema
i want to create multiple forms based on just parts of the schema, but of course i dont want to reinvent the wheel having to extract all referenced objects from a starting property. is it possible to tell rjsf which properties to consturct a form for ?
The text was updated successfully, but these errors were encountered: