RES: html:select and collections

2002-11-13 Thread Francisco Goncalves Rodrigues
7 Para: Struts Users Mailing List Assunto: html:select and collections I declare a tag in my jsp like this and my action for pre population goes something like this Collection productTypes = getProductTypes(results); session.setAttribute("productTypes", productTypes); I&

Re: html:select and collections

2002-11-12 Thread Susan Bradeen
Gus, I don't think you need the "name" attribute in the tag. Susan Bradeen On 11/12/2002 03:06:47 PM Gus Delgado wrote: > I declare a tag in my jsp like this > > labelProperty="label"/> > > > and my action for pre population goes something like this > > Collection productTypes = getProdu

html:select and collections

2002-11-12 Thread Gus Delgado
I declare a tag in my jsp like this and my action for pre population goes something like this Collection productTypes = getProductTypes(results); session.setAttribute("productTypes", productTypes); I'm getting an error saying that the productTypes bean does not exist? any ideas