how to show antd modal instead of window.confirm when user have unsaved changes?
the unsaved changes currently show the window.confirm but we would like to replace it with models from ant design
2 Replies
Hi @AK. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
To replace the default
window.confirm
dialog with an Ant Design modal when there are unsaved changes, you can customize the warnWhenUnsavedChanges
behavior in refine. Here's how you can achieve this:
1. First, enable the warnWhenUnsavedChanges
feature in your useForm
hook:
2. Then, you can use the useModal
hook from @refinedev/antd
to create a custom modal:
3. Finally, you need to override the default warnWhenUnsavedChanges
behavior in your <Refine>
component configuration:
This setup will replace the default window.confirm
dialog with an Ant Design modal when there are unsaved changes and the user tries to navigate away.
For more details on the warnWhenUnsavedChanges
feature and its configuration, you can refer to the Refine documentation on warnWhenUnsavedChanges.
For information on using the useModal
hook, check out the useModal documentation.
Remember to adjust the modal content and styling according to your specific needs.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@1298702566271484007> Kapa.ai is still learning and improving, please let me know how I did by reacting below.