switch is not getting checked when formitem value is true
I have an edit form . in that there switch inside form.Item so when that formitem is true it should be checked how to do it?
6 Replies
apparent-cyan•2y ago
Hey @rehan1
You're using antd right?
optimistic-gold•2y ago
yeah
apparent-cyan•2y ago
Switch component is using
checked
prop instead of value
optimistic-gold•2y ago
ok
apparent-cyan•2y ago
In your
Form.Item
you need to define valuePropName="checked"
optimistic-gold•2y ago
thanks
@aliemirs
<Form.Item name={title} valuePropName="checked">
<Switch
onChange={onChange}
checked={active}
style={{ width: "60px" }}
checkedChildren="yes"
unCheckedChildren="No"
/>
</Form.Item>
am using this way when its active i have to show some data