RE: Validator without Struts

2006-11-30 Thread Saeed, Rada
U can use the nn-validation.js, have a look : http://www.siteexperts.com/tips/functions/ts21/page10.asp -Original Message- From: Jim Reynolds [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 12:22 AM To: user@struts.apache.org Subject: Validator without Struts Hello, I have

RE: problem in formbean

2006-11-30 Thread Saeed, Rada
Is this value a long or int, or whatever numeric value, And u r trying to enter characters in it then validation fails ? Cuz if so the Struts won't be able to populate the long with the string value U entered and in this case it'll keep it's old numeric value. In case of validating numeric field

RE: html:options selected

2006-11-15 Thread Saeed, Rada
You can do it like this : Where cs is your list of values. The above will make the "test2" as the first option in the list, which is selected by default. -Original Message- From: Søren Blidorf [mailto:[EMAIL PROTECTED] Sent: Wednesday, No

RE: Validation in Struts DisptachAction

2006-08-24 Thread Saeed, Rada
Sharma, If insert, update and read modes, are represented by 3 different submits that trigger the actions, make them 3 different action mappings, then put validate="false" in the read action mapping, and true in the rest. -Original Message- From: Vaneet S

RE: Re: Forwards between webapps

2006-08-19 Thread Saeed, Rada
From: news [mailto:[EMAIL PROTECTED] On Behalf Of Laurie Harper Sent: Thursday, August 17, 2006 11:45 PM To: user@struts.apache.org Subject: Re: Forwards between webapps Scott Van Wart wrote: > Saeed, Rada wrote: >> Forwards between webapps are not supported, cuz both have different >&

Forwards between webapps

2006-08-15 Thread Saeed, Rada
Forwards between webapps are not supported, cuz both have different contexts, this's what I got from running this : Is there any other way to achieve this forward between different web applications ?