I've found in version 2.3.9 of chronoforms that if you put your forms like this:
it validates with no problmes.
So there is some problem with the recognition of fields for the case in wich you put class="" before name="" on the specification of the input.
Its been hard to find this, since was so strange that that happends. Hope you can solve this on you next release.
Thanks for this great component!.
<input class="someclass" name="usuari" maxlength="50" type="text" />it wont validate, but if you put it like this:
<input name="usuari" maxlength="50" type="text" class="someclass" />
it validates with no problmes.
So there is some problem with the recognition of fields for the case in wich you put class="" before name="" on the specification of the input.
Its been hard to find this, since was so strange that that happends. Hope you can solve this on you next release.
Thanks for this great component!.