Gabriel

Results 2 comments of Gabriel

@sachin8094 Did you try to validate your input in the onBlur event? It works for me. ```javascript const [address, setAddress] = useState() const simpleValidator = useRef(new SimpleReactValidator()) {simpleValidator.current.message('name', companyInformation.name, 'required')}...

You can also use force update after a form submit to show all the messages at once: ```javascript const simpleValidator = useRef(new SimpleReactValidator()) const [, forceUpdate] = useState(); submitForm() =>...