Dynamically render forms

Is there an easy way to dynamically render forms in refine?? through json file
5 Replies
genetic-orange
genetic-orange2y ago
so we are using useForm hook on antd for generating dynamic forms through json file
correct-apricot
correct-apricot2y 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 🙏
genetic-orange
genetic-orange2y ago
@veeru could you please help me here @Omer can i get help here
foreign-sapphire
foreign-sapphire2y 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
genetic-orange
genetic-orange2y ago
@veeru Can u send me that example code