RE: Validation XMl entity

2006-11-26 Thread Vishal Seth
Hi, But does struts support when integrated with commons-validator? -Original Message- From: Niall Pemberton [mailto:[EMAIL PROTECTED] Sent: Monday, November 27, 2006 12:00 PM To: Struts Users Mailing List Subject: Re: Validation XMl entity On 11/27/06, Vishal Seth <[EMAIL PROTEC

RE: Validation XMl entity

2006-11-26 Thread Vishal Seth
validation in an external file and reference it using xml entity.. -Original Message- From: Christopher Schultz [mailto:[EMAIL PROTECTED] Sent: Friday, November 24, 2006 8:24 PM To: Struts Users Mailing List Subject: Re: Validation XMl entity -BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Vi

Validation XMl entity

2006-11-24 Thread Vishal Seth
Hi, Does struts validation support XML entity. Thanks Vishal MASTEK "Making a valuable difference" Mastek in NASSCOM's 'India Top 20' Software Service Exporters List. In the US, we're called MAJESCOMASTEK

RE: loading tiles dynamically...

2006-10-16 Thread Vishal Seth
You can write a controller class for your tiles definition and accordingly you can set the attribute value as per your requirement for attribute you want to modify. -Original Message- From: maya [mailto:[EMAIL PROTECTED] Sent: Monday, October 16, 2006 7:12 PM To: user@struts.apache.org Su

Custom implementation for MessageResourcesFactory

2006-10-16 Thread Vishal Seth
Hi, I need to know what could be the suitable way of proving custom implementation for the MessageResourceFactory. I have tried with 2 ways: 1) By Overriding ActionServlet and providing implementation for initModuleMessageResources() and setting my own factory class rather than the default one.

Reload properties file in plugin

2006-10-09 Thread Vishal Seth
Hi, Can I reload properties file from a plug-in? Is there any specific way to reload properties file? Thanks, Vishal MASTEK "Making a valuable difference" Mastek in NASSCOM's 'India Top 20' Software Service Exporters List. In the US, we're called MAJESCOMASTEK

RE: Action will be processed two times

2006-09-09 Thread Vishal Seth
Or the thing might be you could have used the javascript and might have done form.submit and since you are using a submit button it is getting submitted twice..I am not sure as not seeen your code..but could be one of the reasons.. -Original Message- From: Martin Gainty [mailto:[EMAIL PROT

RE: When Tiles definations in tiles-def.xml loaded?

2006-08-24 Thread Vishal Seth
Yes ..these definitions are loaded duing plugin load time... But for you own action you can modify the the tiles definition by writing a controller class for the respective tile definition. -Original Message- From: Antonio Petrelli [mailto:[EMAIL PROTECTED] Sent: Thursday, August 24, 2006

RE: Problem with JSTL and Struts tag But Not with

2006-08-24 Thread Vishal Seth
t with You are correct. Nesting tags do *not* work. Try this... text -- James Mitchell 678.910.8017 On Aug 24, 2006, at 1:19 AM, Vishal Seth wrote: > Nested tags...i guess does not work.. > > -Original Message- > From: Mississippi John H

RE: Problem with JSTL and Struts tag But Not with

2006-08-23 Thread Vishal Seth
Nested tags...i guess does not work.. -Original Message- From: Mississippi John Hurt [mailto:[EMAIL PROTECTED] Sent: Thursday, August 24, 2006 10:48 AM To: Struts Users Mailing List Subject: Problem with JSTL and Struts tag But Not with Why is it that when I do the below with struts t

RE: How to retrieve parameters off URL in JSP via Struts

2006-08-10 Thread Vishal Seth
In el you need not check for null like this...you can also use isEmpty method.. It also checks for empty string I guess.. -Original Message- From: David Durham [mailto:[EMAIL PROTECTED] Sent: Thursday, August 10, 2006 11:09 PM To: Struts Users Mailing List Subject: Re: How to retrieve pa

RE: Issue with Struts check box

2006-08-10 Thread Vishal Seth
In web application the value of checkbox is submitted only when it is selected otherwise it is not submitted. Your form/form-property would be in session scope hence it is still remembering the old value. -Original Message- From: Hanmay Udgiri [mailto:[EMAIL PROTECTED] Sent: Thursday, Aug

RE: Validation message Help

2006-08-10 Thread Vishal Seth
Mailing List Subject: RE: Validation message Help How to filter out and where to do it?Do i need to customize validation.xml? -Original Message- From: Vishal Seth [mailto:[EMAIL PROTECTED] Sent: Thursday, August 10, 2006 12:34 PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: RE

RE: Validation message Help

2006-08-10 Thread Vishal Seth
You can try filtering out the error list for displaying unique error messages. You would require a validation for each field, but to display one message rather than duplicating them you can filter out the error list Vishal -Original Message- From: Tejas Bavishi [mailto:[EMAIL PROTECTED]

RE: Using variable of a tag in a scriplet...how to??

2006-08-09 Thread Vishal Seth
a tag in a scriplet...how to?? Thanks vishal (or seth ;o) )! That works, but is there no taglib to get a pageContext attribute? Thanks for your help Gaet - Original Message - From: Vishal Seth To: Struts Users Mailing List Sent: Wednesday, August 09, 2006 12:12 PM Subject: RE: Usin

RE: Using variable of a tag in a scriplet...how to??

2006-08-09 Thread Vishal Seth
Try getting it thru pageConext.getATtribute(). ..I am still not 100% got the hang of ur problem..but you can try using this -Original Message- From: Gaet [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 09, 2006 3:38 PM To: Struts Users Mailing List Subject: Using variable of a tag in a

RE: Help on Validation

2006-06-15 Thread Vishal Seth
Even I think a wrapper on commons validation would be required in this sort of situation. Where the validations are fired on basis of a certain filter. -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Thursday, June 15, 2006 9:58 PM To: Struts Users Mailing List Subjec

RE: Help on Validation

2006-06-15 Thread Vishal Seth
: Scott Van Wart [mailto:[EMAIL PROTECTED] Sent: Thursday, June 15, 2006 8:18 PM To: Struts Users Mailing List Subject: Re: Help on Validation Vishal Seth wrote: > I got the first point mentioned where I would need to override the > validationKey method and not the second one. > > Proble

RE: Help on Validation

2006-06-15 Thread Vishal Seth
first point mentioned I would need to have different forms entry throughout the application. -Original Message- From: Scott Van Wart [mailto:[EMAIL PROTECTED] Sent: Thursday, June 15, 2006 7:08 PM To: Struts Users Mailing List Subject: Re: Help on Validation Vishal Seth wrote: >

Help on Validation

2006-06-15 Thread Vishal Seth
Hi, Can I do validation for same form on basis of some session key. Currently all the validations are stored in application scope. I want depending upon user logged the validation fired should be different on same form. I would be having different validation files for different users. It

Validation Files Loading

2006-06-13 Thread Vishal Seth
Hi, I have a specific requirement to load different properties/validations on a certain condition. But the condition I would come to know only after the user session is created. But in struts the plugins are loaded during startup and now I cannot load files for that particular condition. My ja