Re: html:options & collection of beans in FormBean

2001-10-22 Thread Ted Husted
The ActionForm itself is a bean "in some scope". The name is whatever you specified in struts-config. People tend to send the options collection over seperately from the form (your #1), since it usually a seperate query and sometimes used in more than one place. But referring to the ActionForm it

html:options & collection of beans in FormBean

2001-10-18 Thread David M. Karr
I have an ActionForm that has a property which is a collection of beans. I obtained this collection in my Action.perform() method. In my JSP page, I want to display an html:options list where the label is one property of each of those beans, and the value is another property. It appears, from t