html:select and html:options example?

2003-06-15 Thread Stephan Niedermeier
Hello, who can give me an example, how to use the html:select in conjunction with html:options? I had already defined an ActionForm and JSP like follows. The listing of the option-Elements works fine but not the "reshowing" of the selected elements of the list, because after I have clicked the sub

Re: Need help with html:select and html:options

2003-01-24 Thread Scott Seong
uary 24, 2003 12:03 AM Subject: RE: Need help with html:select and html:options > Check if you have month & day properties defined in your form bean. > > Suresh > > >-Original Message- > >From: Scott Seong [mailto:[EMAIL PROTECTED]] > >Sent: Friday, Janua

RE: Need help with html:select and html:options

2003-01-23 Thread Suresh Addagalla
Check if you have month & day properties defined in your form bean. Suresh >-Original Message- >From: Scott Seong [mailto:[EMAIL PROTECTED]] >Sent: Friday, January 24, 2003 11:32 AM >To: Struts Users Mailing List >Subject: Need help with html:select and html:options

Need help with html:select and html:options

2003-01-23 Thread Scott Seong
Hello, I'm having trouble with html:select and html:options. Basically, I have three select/options pairs in a JSP page, and the result is complaining about "No getter method available for Property month for bean name under org.apache...". Here is the code sample: <% Vector s

Re: html:select and html:options

2003-01-03 Thread Jose Luis
anuary 03, 2003 7:08 PM Subject: RE: html:select and html:options You can use the LabelValueBean class for that, see www.husted.com for examples. Ilya -Original Message- From: Jose Luis To: Struts Users Mailing List Sent: 1/3/03 11:04 AM Subject: html:select and

RE: html:select and html:options

2003-01-03 Thread Sterin, Ilya
You can use the LabelValueBean class for that, see www.husted.com for examples. Ilya -Original Message- From: Jose Luis To: Struts Users Mailing List Sent: 1/3/03 11:04 AM Subject: html:select and html:options hi everyone, i have a page whit the following code: where

html:select and html:options

2003-01-03 Thread Jose Luis
hi everyone, i have a page whit the following code: where sectorCompany is an ArrayList that i built prior to view the jsp. My problem is: what i really need is to pass to the result action the value which represents the labels that contains the SectorCompany ArrayList, so, How i can build

iterate > arraylist of arrays[] to show html:select and html:options.

2002-06-03 Thread crillo
Hi, how do i iterate on an arrayList of arrays with beans, containg a bean wich turn contains another bean wich has the attribute i want to show... the html:select does'nt seem to be able to reach the attributes of the elements from the outer iterate. any one know how its do

html:select and html:options tags

2002-03-01 Thread Viet Kevin
Hello all My question is about the struts html:select and html:options tags public class xxxForm extends ActionForm { private Person choosed; private Collection persons; public get... // accessors for this attributes are defined but I do not display

Re: html:select and html:options

2001-08-06 Thread Craig R. McClanahan
On Mon, 6 Aug 2001, Stefan Faist wrote: > Hello all, > I these two lists: > > > > labelProperty="label" /> > > > >property="allProjekt_aktivitaeten" /> > >labelProperty="label" /> > > > > I want this: > When I select

html:select and html:options

2001-08-06 Thread Stefan Faist
Hello all, I these two lists: I want this: When I select one element in the list <... id="names" ...> the then the list <... id="aktivitaeten" ...> get elements, that are the activities from the element of

RE: accessing user-defined classes from html:select and html:options tags

2001-07-25 Thread Philip Tucker
lang.Thread.run(Thread.java:484) > -Original Message- > From: eden [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 23, 2001 7:23 PM > To: [EMAIL PROTECTED] > Subject: RE: accessing user-defined classes from html:select and > html:options tags > > > Hi! I know you ask

accessing user-defined classes from html:select and html:options tags

2001-07-20 Thread Philip Tucker
I'm using Struts 1.0 with Tomcat 3.2.2 and JBoss 2.2.2. I'm using an containing an tag in a JSP, with the property attributes referring to form and bean fields. It works fine when the Java class of the 2 bean properties is String, but when I try to use class I created I get an error. I've ver

RE: how to set the default selected value using html:select and html:options

2001-05-18 Thread Sidney Chong
lf Of [EMAIL PROTECTED] Sent: Friday, 18 May, 2001 4:38 PM To: [EMAIL PROTECTED] Subject: how to set the default selected value using html:select and html:options yes, it does what you'd expect it to. selects the label that corresponds to the value of the property in the form bean. i'd rec

how to set the default selected value using html:select and html:options

2001-05-18 Thread struts
yes, it does what you'd expect it to. selects the label that corresponds to the value of the property in the form bean. i'd recommend checking out the exercise-taglib examples. there are samples of how to drive most of the html tags. jae

how to set the default selected value using html:select and html:options

2001-05-18 Thread Sidney Chong
Title: forms and javascript Hi guys, just wondering if I've misunderstood the workings of the html:select and html:options tag. Is it true that html:options tag will automatically set the default selected value to that of the property declared in html:select? or is there a need to se