RE: ApplicationResources

2002-12-25 Thread Vipul Sanghi
The locale that you are specifying does not include the country extention. It only knows of zh because you are probably doing new Locale(zh). You have to use the country variant when you instantiate and set the locale i think it is you have to do new Locale(zh, hk) to pick traditional chinese

error when using FormFile.

2002-12-05 Thread Vipul Sanghi
I am using a file to upload. The file has a one required field. and a file atachment. If I get an error on the required field The form field does not reset to file name before the submit. Is there any solution to this problem. Vipul -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED]

RE: Dynamically generated forms

2002-12-03 Thread Vipul Sanghi
Just write a custom tag that inherits from text and in there decide to do this iteration. There you could also control the layout. i.e. side by side, one above next etc. -Original Message- From: Jordan Thomas [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 1:16 AM To: Struts

RE: delay user input validate....

2002-11-26 Thread Vipul Sanghi
I think you can achieve this by doing the following: 1. The Form bean has to have elements of all the parameters of the User registration (screen 1 and screen2). This formbean has to be of session scope that is how you can delay the validation of the input till the second screen. 2. The action

RE: request parameter

2002-11-18 Thread Vipul Sanghi
this will work. I use it. -Original Message- From: Gemes Tibor [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 9:08 PM To: Struts Users Mailing List Subject: Re: request parameter 2002. november 18. 13:36 dátummal Andrew Hill ezt írtad: As Gemes says, your best bet is to

hot to get required fields out of validator

2002-11-18 Thread Vipul Sanghi
I am using Struts 1.1b2. Have the following problem: I need to put a required marker next to the required fields on my form a little red * or something. I am using a ValidatorForm for this and the required fields are being set up in the validation.xml. Is there any way for me to pull out the

RE: (Newbie Question) How to use java code as attributes in struts tags

2002-11-18 Thread Vipul Sanghi
another thing you might consider doing is using bean:define/ tag before the iterate to define the counts and then go use the variable in the iteration tag. This looks cleaner and there are not too many pesky % % hanging around the code. -Original Message- From: micael [mailto:[EMAIL