Re: Radio button group

2006-04-17 Thread manivannan84
do you want to map the radio button to a bean ? -- Manivannan Palanichamy http://geocities.com/manivannan57 -Original Message- From: Vidya (Suvarna) Mahavadi <[EMAIL PROTECTED]> To: Struts Users Mailing List Sent: Tue, 18 Apr 2006 08:28:28 +0200 Subject: RE: Radio button grou

Re: ValidatorActionForm in Struts 1.3.1

2006-04-17 Thread manivannan84
hi, Have you placed the validator jar (jakarta-oro- (somethinf).jar ) in WEB-INF/lib? -- Manivannan Palanichamy http://geocities.com/manivannan57 -Original Message- From: Chaudhary, Harsh <[EMAIL PROTECTED]> To: user@struts.apache.org Sent: Mon, 17 Apr 2006 12:49:25 -0500 Sub

RE: Radio button group

2006-04-17 Thread Vidya \(Suvarna\) Mahavadi
Guys, I am still struggling to find a way out.. Any ideas how to get this right! Regards -Original Message- From: Vidya (Suvarna) Mahavadi [mailto:[EMAIL PROTECTED] Sent: Thursday 13 April 2006 16:37 To: Struts Users Mailing List Subject: Radio button group Hi, I have a jsp with a

Struts / Tiles Problem with RAD

2006-04-17 Thread Hans-Peter Petek
Hallo all, following problem - i developed an app on RAD 6.0 (but weblevel 2.3 - so compliant to was 5.1), Servlet Spez 2.3 and JSP 1.2 When i run the app through the testclient (v5.1) on RAD 6 all is working fine and i get no errors or warnings ... But when i want to deploy the app to the WAS 5

RE: ArrayList & html:options

2006-04-17 Thread Kalcevich, Daniel
I think maybe using the LabelValueBean is the most realistic option. I have several places where I am using that now anyways. Thanks Wendy. Daniel -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Monday, April 17, 2006 2:32 PM To: Struts Users Mailing List Subject:

Re: DWR throws errors

2006-04-17 Thread Lixin Chu
thanks. but according to the doc, I can use the form bean for Struts creator. I tried Spring creator, it works if I only use the bean name not fully qualified class name though. On 4/17/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > -- Original Message --- > From: "Lixin C

Re: ArrayList & html:options

2006-04-17 Thread Wendy Smoak
On 4/17/06, Kalcevich, Daniel <[EMAIL PROTECTED]> wrote: > Changing that to: > > > > > > Now produces this error: > > 15:55:34,494 ERROR [action]:253 - Servlet.service() for servlet action > threw exception > javax.servlet.jsp.JspException: ServletException in > '/jsp/templates/tab_conten

RE: ArrayList & html:options

2006-04-17 Thread Kalcevich, Daniel
Changing that to: Now produces this error: 15:55:34,494 ERROR [action]:253 - Servlet.service() for servlet action threw exception javax.servlet.jsp.JspException: ServletException in '/jsp/templates/tab_content_template.jsp': ServletException in '/jsp/fine_export.jsp': No name specifie

Re: ArrayList & html:options

2006-04-17 Thread Wendy Smoak
On 4/17/06, Kalcevich, Daniel <[EMAIL PROTECTED]> wrote: > request.setAttribute( "exportDates", exportDates ); //exportDates = > ArrayList > > JSP: > > > > > > Error: > 15:38:53,106 ERROR [action]:253 - Servlet.service() for servlet action > threw exception > javax.servlet.jsp.JspExceptio

ArrayList & html:options

2006-04-17 Thread Kalcevich, Daniel
Everyone, I am trying to use the htm-el:options tag to write out the value of a Select box. I am using an ArrayList of Strings that I am trying to iterate over. I want the value and option to be the same on the output. Here is how I am calling my code... Action: request.setAttribute(

Re: Struts v1.1, Tiles, Bean property question...

2006-04-17 Thread Adam Hardy
I assume this is part of the transition process between the perl app and the struts app - it is a somewhat unconventional approach! As such I haven't tried it before, but the tag is looking for a template or jsp, not just a string. Put those beanName and beanProperty attributes on the in th

Re: Struts v1.1, Tiles, Bean property question...

2006-04-17 Thread Alan Treece
Yes... I'm using a tiles-defs.xml. Let me rephrase the question... Here's my tiles-defs.xml: My action uses a DynaActionForm and one of the form properties will return a string like "This is a test". This string needs to be inserted into the "body" attribute of the tile and rende

Re: ValidatorActionForm in Struts 1.3.1

2006-04-17 Thread Wendy Smoak
On 4/17/06, Chaudhary, Harsh <[EMAIL PROTECTED]> wrote: > I don't see the ValidatorActionForm class in Struts 1.3.1 . It's in the struts-extras jar. HTH, -- Wendy

ValidatorActionForm in Struts 1.3.1

2006-04-17 Thread Chaudhary, Harsh
Hi, I don't see the ValidatorActionForm class in Struts 1.3.1 . I don't understand why this was taken out (not even deprecated). Or is there an alternate class I should be using for the ValidatorActionForm class. Thanks, Harsh.

RE: Efficient session object and cookie checks in struts

2006-04-17 Thread George.Dinwiddie
Jeff Thorne wrote: > I have been reading that it May be more > efficient to just pass the resultset back to the view rather > Than deal with the overhead of several transfer objects. Does > this make sense? I don't thinks so. 1. Object creation time is trivial compared with database access tim

Re: friday ha ha

2006-04-17 Thread Zoran Avtarovski
I thought it looks pretty good, I think projects like this have their place. Especially, in light of the fact that we're not going to see Action2 for a little while (even then there'll be some tweaking to get it right) and there are a lot of Struts apps out there that want to take advantage of Java

[iterative nested objects validation problem]

2006-04-17 Thread Deva Pitchai(NatureSoft)
Hi all Any idea of making this as dynamic iterative nested objects in validation.xml? .. .. .. One site may have several rooms. And it is not a good way to make the array as static 1 & 2s. Kindly reply with ur thoughts. Thanks -- Deva --

Re: DWR throws errors

2006-04-17 Thread [EMAIL PROTECTED]
-- Original Message --- From: "Lixin Chu" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Mon, 17 Apr 2006 07:56:46 +0800 Subject: DWR throws errors > Hi, > I am trying my luck to see if someone in this forum has any idea of why - i > have not got response from DWR foru

Re: Struts v1.1, Tiles, Bean property question...

2006-04-17 Thread Adam Hardy
Alan Treece on 17/04/06 07:11, wrote: I'm working on the layout with Tiles and having a difficult time getting past this one issue. The Perl code has various header and footer pieces of code based on whether a use id logged on or not and whether the user is accessing what is termed an external

[Amount pattern matching - validator]

2006-04-17 Thread Deva Pitchai(NatureSoft)
Hi all, I would like to validate the following pattern using validator Any idea foo how to achieve this? my propable pattern is ... 9.999.999.999.999.999,99 [French notation] In short, if a user enter the value for this field, it should match this pattern. thanks in adv -- Regards, Deva.

Re: directly addressing maps in jsp-file

2006-04-17 Thread rama chandrula
Hi Vinit, I have used jstl to display the data in the form. But if I want to edit this data and send them back to the action form. I am not able to do this. can u give me a suggestion how I can proceed further Thanks, Rama From: "Vinit Sharma" <[EMAIL PROTECTED]> Reply-To: "Struts Users Ma