In reworking my Action classes, I tried to package all values needed for my form in the form bean, so I included a property that contains an ArrayList of LabelValueBeans.
Can I refer to this property to populate the <html:options> tag? This nested syntax doesn't seem to work: <html:options collection="brokerForm.brokers" property="value" labelProperty="label" /> Or should I go back to including the ArrayList as a request attribute and return it that way. Lee

