On Tue, 2004-07-20 at 13:53, [EMAIL PROTECTED] wrote:
> Hi,
> 
> I want to set a Validation Error for a form widget. I am able to do it
> when I use formWidObj.widName.onActivate = test(formWidObj);
> 
> 
> But when I use the following I am unsuccessful in setting the validation
> error.
> 
> if(formObjWid.getSubmitWidget().equals(formObjWid.widName))
>       test();
> 
> Where test() is
> test(formWidObj) {
>       return function() {
>               formWidObj.widName.setValidationError("Error")'
>               return false;
>       }
> }
> widName is a 'submit' widget.
> 
> Is it that validation errors can be set only when we use onActivate.
> Or is it that I am trying to set validation error in a wrong way when I
> use getSubmitWidget()?

The method test expects a parameter formWidObj but you call it without a
parameter.

-- 
Bruno Dumon                             http://outerthought.org/
Outerthought - Open Source, Java & XML Competence Support Center
[EMAIL PROTECTED]                          [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to