old-apricot
old-apricot2y ago

how to use form.setFields in checkbox

form.setFieldsValue({ add: true }); <Form.Item name="add"> <Checkbox>Add</Checkbox> </Form.Item>
4 Replies
old-apricot
old-apricot2y 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 guess
old-apricot
old-apricot2y 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
old-apricot
old-apricot2y ago
But, isn't form.setFieldsValue({ add: true }); responsible for it being checked?
old-apricot
old-apricot2y ago
okay ill check