We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inside the Form component I added a 'CheckBoxGroup' (react-checkbox-group)
ie.
<CheckboxGroup name="fruit" value={['apple','watermelon']}> <input type="checkbox" value="apple" />Apple <input type="checkbox" value="orange" />Orange <input type="checkbox" value="watermelon" />Watermelon </CheckboxGroup>
on handle submit, the 'fruit' key/pair is not in the values - shouldn't the form pickup all the form fields inside the form?
Form onValidSubmit={this._handleValidSubmit} onInvalidSubmit={this._handleInvalidSubmit} validationEvent="onBlur"> _handleValidSubmit = (values) => { console.log(values); };
The text was updated successfully, but these errors were encountered:
I'll look into that, thanks!
Sorry, something went wrong.
No branches or pull requests
Inside the Form component I added a 'CheckBoxGroup' (react-checkbox-group)
ie.
on handle submit, the 'fruit' key/pair is not in the values - shouldn't the form pickup all the form fields inside the form?
The text was updated successfully, but these errors were encountered: