You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@jrozbicki I worked around this by calling setFieldValue for the array fields after reset. This way form.watch('products', ... gets triggered. Maybe It is a good idea for watch docs to be updated
const handleFormReset = () => {
form.setFieldValue('products', []); <-- call this first to get correct previousValue in watch callback
form.reset();
};
Dependencies check up
What version of @mantine/* packages do you have in package.json?
7.13.2
What package has an issue?
@mantine/form
What framework do you use?
Vite
In which browsers you can reproduce the issue?
All
Describe the bug
Shopping cart scenario - we have few items with prices, we can change amount of items in that shopping cart and we wanna display total value.
When we use "uncontrolled" form, we should use
form.watch
to track specific values.Our
products
form field is an array[{ name: "phone", price: 1000, numberOfUnits: 1}]
.When we use
form.watch("products", console.log)
nothing is happening.I found that previously it was mentioned as "not planned" #6280 (comment)
Currently if I want to track this, I had to use
use-force-update
hook and force rerender ononChange
ofnumberOfUnits
I wanted to ask if we could revisit thinking about this issue or maybe there is different workaround to this.
If possible, include a link to a codesandbox with a minimal reproduction
No response
Possible fix
No response
Self-service
The text was updated successfully, but these errors were encountered: