In the edit page, how do you remove form values?
I have a resource with a key of "a". When editing, I need to dynamically remove this from submission.
For example, if situation 1, the PATCH should be {val1: 5, a: 10}, for situation 2, the PATCH should be {val1: 5}
5 Replies
Hi @Tyler. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
To dynamically remove form values before submission in an edit page using Refine, you can modify the form data in the
onFinish
handler. This allows you to conditionally remove or alter data before it is sent to the API.
Here's an example of how you can achieve this:
In this example, the handleOnFinish
function checks a condition to determine whether to remove the key "a" from the form values before calling onFinish
. You can replace the condition with your specific logic to decide when to remove the key.
For more information on modifying form data before submission, you can refer to the Refine documentation on modifying data before submission.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@471159355085946931> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
spiritual-aquaOP•2mo ago
This is with @refinedev/mantine
@kapa.ai This is with @refinedev/mantine
Let me check the knowledge base for you again. One moment! :books:
----------------------
To dynamically remove form values before submission using
@refinedev/mantine
, you can utilize the transformValues
function provided by the useForm
hook. This function allows you to modify the form data before it is sent to the API.
Here's an example of how you can achieve this:
In this example, the transformValues
function is used to conditionally remove the key "a" from the form values based on your specific logic. You can replace the condition with your logic to decide when to remove the key.
For more information on modifying form data before submission, you can refer to the Refine documentation on modifying data before submission with Mantine.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@471159355085946931> Kapa.ai is still learning and improving, please let me know how I did by reacting below.