wise-white
wise-white3y ago

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
stormy-gold
stormy-gold3y ago
Hey @rehan1 You're using antd right?
wise-white
wise-whiteOP3y ago
yeah
stormy-gold
stormy-gold3y ago
Switch component is using checked prop instead of value
wise-white
wise-whiteOP3y ago
ok
stormy-gold
stormy-gold3y ago
In your Form.Item you need to define valuePropName="checked"
wise-white
wise-whiteOP3y 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

Did you find this page helpful?