worthy-azureW
Refine3y ago
4 replies
worthy-azure

How can I just see the current fields value?

So this seems like a really dumb question, but using refine, its really difficult to use the value of a field.

What I mean by that is I want to check if a checkbox is checked, if its checked, I want to show additional fields. Problem is, I cant find the actual value that updates as I'm toggling the checked box:

<Form.Item
  label="Is Limited Edition"
  valuePropName="checked"
  name={["is_limited_edition"]}
>
  <Checkbox>Is Limited Edition</Checkbox>
</Form.Item>


How can I get the value of is_limited_edition?
Was this page helpful?