RE: html:select in Struts

2004-09-19 Thread Robert Taylor
[EMAIL PROTECTED] > Sent: Sunday, September 19, 2004 7:53 AM > To: [EMAIL PROTECTED] > Subject: RE: html:select in Struts > > > Hi Robert, > > This is the HTML code I have written in my JSP page for including the > two DropDowns. > > Thanks, > Priya. > >

Re: html:select in Struts

2004-09-19 Thread Aditya Kapur
In order to use and you must put the values you want to diaplay in a collection like private static ArrayList monthDisplay=new ArrayList(); monthDisplay.add(new org.apache.struts.util.LabelValueBean( "Jan", "0" )); monthDisplay.add(new org.apache.struts.util.LabelValueBean( "Feb", "1" )); month

RE: html:select in Struts

2004-09-19 Thread Robert Taylor
Is this the actual HTML generated by the .jsp page? robert > -Original Message- > From: Priya Jotwani [mailto:[EMAIL PROTECTED] > Sent: Sunday, September 19, 2004 7:44 AM > To: Struts Users Mailing List > Subject: html:select in Struts > > > Hi Guys, > > > > I have a JSP Page with t