-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Render without form tag? #71
Comments
If I sent a pull request that implemented |
If usage remains backward compatible and the code is good, definitely yes :) |
why don't you just use the component Checkout how it is being used here: https://github.com/mozilla-services/react-jsonschema-form/blob/master/src/components/Form.js |
Yes, I ended up using |
Any update on the best approach to this? Would like to drop a react-jsonschema-form powered fieldset into an existing form. |
This was fixed by #1345! |
I want to use this project to extend existing forms but I cannot render the
Form
component inside another form. The two solutions I see is to convert the existing form code into schema json and merge it with the user supplied schema OR have the option to render without the form tag. Merging the fields should work but there are cases where the existing form layout would be difficult to represent with ui schema and jsonschema (examples: an "advanced" section which collapses down, code editor with codemirror, and embedded previews next to fields). It seems having control over whether to render the form tag would be more robust.The text was updated successfully, but these errors were encountered: