RE: Struts dropdown boxes

2005-11-02 Thread Neil Meyer
Thanks Frank I will look at this. Thanks all for your trouble. -Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: 02 November 2005 04:47 PM To: Struts Users Mailing List Cc: Struts Users Mailing List Subject: Re: Struts dropdown boxes Hi Neil, If your app can

RE: Struts dropdown boxes

2005-11-02 Thread Garner, Shawn
--Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 02, 2005 8:47 AM To: Struts Users Mailing List Cc: Struts Users Mailing List Subject: Re: Struts dropdown boxes Hi Neil, If your app can tolerate Javascript (i.e., require it), then Ajax is probably

Re: Struts dropdown boxes

2005-11-02 Thread Frank W. Zammetti
Hi Neil, If your app can tolerate Javascript (i.e., require it), then Ajax is probably your best bet. Take a look here: http://sourceforge.net/projects/javawebparts/ Grab a copy of the JWPCookbook. In it is a recipe called Dynamic Double-Select, which is exactly what you want. You should be a

RE: Struts dropdown boxes

2005-11-02 Thread Neil Meyer
Thanks Daniel I will definitely look at this. -Original Message- From: Daniel Henrique Ferreira e Silva [mailto:[EMAIL PROTECTED] Sent: 02 November 2005 04:06 PM To: Struts Users Mailing List Subject: Re: Struts dropdown boxes Neil, A good approach for this is always having a set up

Re: Struts dropdown boxes

2005-11-02 Thread Daniel Henrique Ferreira e Silva
Kristensen [mailto:[EMAIL PROTECTED] > Sent: 02 November 2005 03:40 PM > To: 'Struts Users Mailing List' > Subject: RE: Struts dropdown boxes > > Or, if the data is pretty static and of a modest size, perform the > population of the second drop down box in javascript. >

RE: Struts dropdown boxes

2005-11-02 Thread Neil Meyer
: 'Struts Users Mailing List' Subject: RE: Struts dropdown boxes Or, if the data is pretty static and of a modest size, perform the population of the second drop down box in javascript. Although, it'd be much better as Thai proposed, since with javascript you'd write browser de

RE: Struts dropdown boxes

2005-11-02 Thread Thor Kristensen
Vu, Thai [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 02, 2005 2:33 PM > To: Struts Users Mailing List > Subject: RE: Struts dropdown boxes > > I will submit that form whenever the first dropdown list > changes and then load the data to the 2nd. > > -Original

Re: Struts dropdown boxes

2005-11-02 Thread Gareth Evans
:26 AM To: Struts Users Mailing List Subject: Struts dropdown boxes Hi, I need to have 2 dropdown boxes on my jsp page. The first dropdowns selected value will determine what is pulled from the database for the second dropdown. I know there is a few ways of doing it but would like to know what

RE: Struts dropdown boxes

2005-11-02 Thread Vu, Thai
I will submit that form whenever the first dropdown list changes and then load the data to the 2nd. -Original Message- From: Neil Meyer [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 02, 2005 7:26 AM To: Struts Users Mailing List Subject: Struts dropdown boxes Hi, I need to have 2

Struts dropdown boxes

2005-11-02 Thread Neil Meyer
Hi, I need to have 2 dropdown boxes on my jsp page. The first dropdowns selected value will determine what is pulled from the database for the second dropdown. I know there is a few ways of doing it but would like to know what most of the people recommend doing this. Your help is really apprecia