Hi How can we add Window: beforeunload event to an antd form? For a single field, we can implement as below https://codesandbox.io/s/cool-brattain-uufyg?file=/src/App.js:452-558
How to add Window: beforeunload event to antd form
884 Views Asked by Rich At
2
There are 2 best solutions below
0

Antd form instance has a getFieldsValue
method (https://ant.design/components/form/#FormInstance).
You can get all values by calling form.getFieldsValue(true)
and check if any field is filled.
You can use method
onFieldsChange
to understand when block the navigation:Live example: