> Is there a way to force a modelobject update on each individual field
> and then do my form validation.
It seems you want to use getConvertedInput(). Going via the model to get the
converted value is just a detour when you are in a validator. If you push data
to the model and then decide it is invalid, then your model will have invalid
data, and if that is acceptable, what role does the validator fill then? You
might as well do your checks in onSubmit() at that point...
> if (textField1.getInput() == "creditCard") {
You should be aware that this code will most likely fail. Look into equals().
- Tor Iver
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]