Sign in
Log inSign up

How to validate tabbed forms in React?

Aditya's photo
Aditya
·Jan 11, 2017

I have a page which gives the user the ability to create tabs where each tab has some form input. The form input can be textbox, dropdown or textarea, depending on the stage type the user selects. I store all this information in an array of objects with an object for each tab the user creates.

Now I want to validate the form elements in each tab before the user submits and display an error message if any. How can I do this in React? Can it be done in redux forms?