fair-rose•3y ago
how to use form.setFields in checkbox
form.setFieldsValue({ add: true });
<Form.Item name="add">
<Checkbox>Add</Checkbox>
</Form.Item>
4 Replies
rival-black•3y ago
In the above code snippet, I don't think there's a problem with
setFields but the problem is Checkbox is not using value (which is the default valueProp the Form.Item passes to the child) but its using checked
you can do valuePropName="checked" i guessfair-roseOP•3y ago
so initially i dont want value to be checked once i click on some button it should get checked .... but if i use valuePropName="checked" initially its getting checked
rival-black•3y ago
But, isn't
form.setFieldsValue({ add: true }); responsible for it being checked?fair-roseOP•3y ago
okay ill check