- Notifications
You must be signed in to change notification settings - Fork6
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Hi again, Quick questions:
|
BetaWas this translation helpful?Give feedback.
All reactions
- Values from
UiSchemaalways have higher priority, here is an exampledescription: uiOptions?.description ?? schema.description.
The reasons for defining something inUiSchemacan be different, for example I was making an editor forUiSchemaso that the user could edit the form view without changing the data model. - Yeah,this one. Not everyone needs markdown support by default, but it will increase the size of the bundle for everyone.
- You can makesome fields readonly using the
readOnlyparameter in the json schema.
You can make part or all of the form non-interactive using theinertattribute.
Replies: 1 comment 3 replies
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
|
BetaWas this translation helpful?Give feedback.
All reactions
-
Perfect and detailed answer. Thank you 👍 Your editor stuff is available somewhere ? I saw that a next version is coming ? Should I wait for it or should I start already diging more ? (I'm not in a hurry) |
BetaWas this translation helpful?Give feedback.
All reactions
-
No, it was a project at a previous job, I don't have that code anymore.
This depends on the functionality to be used. import {theme } from '...'const form = createForm3({...theme,...})...<RawForm {form} />with import {themeResolver } from '...'const theme = createTheme(themeResolver)const form = createForm({theme,...})setFormContext(form.context)...<SimpleForm />If you plan to implement a I think the release won't be until next month at the earliest. |
BetaWas this translation helpful?Give feedback.
All reactions
-
Clear, thank you 👍 |
BetaWas this translation helpful?Give feedback.