Hi Olivier,

Even when I give a string it works. But my doubt was whether
setValidationError works when I use the below code to get the submit
event of the form and perform validation

--> if(formObjWid.getSubmitWidget().equals(formObjWid.widName))
        test();

For me the above method didn't work. I had to use onActivate for the
submit widget and set the validation error.
So my question can validation errors be set only when we use onActivate
for the submit widgets.

Regards
Anand

-----Original Message-----
From: news [mailto:[EMAIL PROTECTED] On Behalf Of Olivier Billard
Sent: Wednesday, July 21, 2004 1:21 PM
To: [EMAIL PROTECTED]
Subject: Re: Set Validation Error

Hi Anand,

The widget.setValidationError() takes a ValidationError object, and not
a string [1].
You should try this :

formWidObj.widName.setValidationError(
     new
Packages.org.apache.cocoon.woody.datatype.ValidationError("Error"));


[1]
http://cocoon.apache.org/2.1/apidocs/org/apache/cocoon/forms/formmodel/F
ield.html#setValidationError(org.apache.cocoon.forms.validation.Validati
onError)

--
Olivier Billard

[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()?
>
> Thanks in advance.
>
> Regards,
> Anand
>
> Confidentiality Notice
>
>
> The information contained in this electronic message and any
attachments to this message are intended
> for the exclusive use of the addressee(s) and may contain confidential
or privileged information. If
> you are not the intended recipient, please notify the sender at Wipro
or [EMAIL PROTECTED] immediately
> and destroy all copies of this message and any attachments.


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





Confidentiality Notice

The information contained in this electronic message and any attachments to this 
message are intended
for the exclusive use of the addressee(s) and may contain confidential or privileged 
information. If
you are not the intended recipient, please notify the sender at Wipro or [EMAIL 
PROTECTED] immediately
and destroy all copies of this message and any attachments.

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

Reply via email to