Summary:
UDT validation doesn't work properly with standard validation
Detailed Description:
When I use an UDT while validating my form, it ignores the standard field
validation (ie: if the UDT says OK, the form is validated, and the standard
validations are not made :required fields control , etc.)
What I suppose: in the 'validate()' method of the form class, the udt seems to
be
called inside the loop control of every field, when I suppose it had to be
called after this loop, if there is no error.
As it also use an inside loop with the variable $i, I assume it breaks the main
loop wich also use the $i counter : the udt is called with the first field of
the form, then breaks the loop.