Page 1 of 1

CGBetterforms required field

Posted: Mon Apr 30, 2018 9:03 pm
by brentnl
I'm using CGBF for the first time now, and it's looking very promising! But there is one thing I can't solve... I'm using a form with multiple pages, powered by jQuery (every page is in a <fieldset>); is it possible to validate fields in advance instead of after hitting the submit button at the last page?

This is the form-styling I'm using; http://hitechparks.com/web/product/form ... alidation/
They have some build-in validation, but it isn't that advanced.

Re: CGBetterforms required field

Posted: Tue May 01, 2018 2:07 pm
by calguy1000
Form validation before the data is sent to the server is done via javascript.
CGBetterForms does not provide any javascript form validation routines.

So.. if the javascript form validation library you are using does not meet your requirements, you will have to find another. or write the appropriate javascript yourself.

Re: CGBetterforms required field

Posted: Tue May 01, 2018 9:15 pm
by brentnl
calguy1000 wrote:Form validation before the data is sent to the server is done via javascript.
CGBetterForms does not provide any javascript form validation routines.

So.. if the javascript form validation library you are using does not meet your requirements, you will have to find another. or write the appropriate javascript yourself.
Ok Thanks! I'll look into the options with javascript!