I have a requirement of building an mvc based multi-step application form that will have 4 steps:- Basic-details, Contact-details, Operations-details, vehicle details.
Basic includes-Basic user information like name ,dob.
Contact- Address, Mailing Address, Shipping Address, Phone
Operations-Some Yes/no questions with reasoning
Vehicle-This is a section to add multiple vehicle details.
Every section is segregated with a div. I need to validate 1 section & only then move to the next section i.e. basic details section when filled ,will be validated & only then move to contact details section for which I need client side validation.
I need to use Jquery validation plugin rather than having custom validation but the issue with jquery validation is it works with a complete form & in my case the validation is one section at a time rather than a single form. Any input for the above will be helpful.
Regards.