flat-fuchsia
flat-fuchsia2y ago

Dynamically render forms

Is there an easy way to dynamically render forms in refine?? through json file
5 Replies
flat-fuchsia
flat-fuchsia2y ago
so we are using useForm hook on antd for generating dynamic forms through json file
absent-sapphire
absent-sapphire2y ago
unfortunately there is no support from core, but of course you can use other libraries. for example: https://rekit.github.io/antd-form-builder/examples-v4/ but unfortunately we do not have an example for this at the moment. @veeru maybe you can help about this topic 🙏
flat-fuchsia
flat-fuchsia2y ago
@veeru could you please help me here @Omer can i get help here
other-emerald
other-emerald2y ago
hi @purna543 , We tried it using formily json schema . const { onFinish, redirect, formProps } = useForm<IDataCollection>({ redirect: false, }); const formObj = createForm(formProps); and pass the form object , properties and schema to FormProvider
flat-fuchsia
flat-fuchsia2y ago
@veeru Can u send me that example code