react-form-component
react-form-component copied to clipboard
Any way to get inputs values without the submit click event?
I'm trying to use it in a form without submit button. Can I get the selected values in different way?
Tanks!
You can use onChange prop of a <Form>, which gives you access to all current values of whole form when they change. Some inputs also provides their ownonChange prop, which is being triggered only when particular field changes.