NewOldMax/react-form-validator-core

How can I handle multiple input component ?

Closed this issue · 4 comments

Hi guys, first thank you for your work. Your package is the only one that covered all my uses cases... Until now.
I'm trying to make a Radio ValidatorComponent (RadioGroupValidator) that contain some Radio components (<input type="radio" {...props} />). I use the "required" rule with an error message as it is a radio (I just want to check if at least on radio has been checked).
The problem is that when i submit my form, the error appears event if one of my radio is checked.
I make the error disappear with the "makeValid" methode of ValidatorComponent but when validation is call it still returns an error.

TL;DR:

  • Is it possible to handle multiple inputs component with react-form-validator-core?
    (radio, checkbox...)

  • If yes can you give an example ?

Hi,
can you reproduce your issue at https://codesandbox.io/s/new ?

Thank you for the fast answer, didn't thought about that solution it's awesome ^^