<html:select property="*name*"> <html:optionsCollection property="*conditions*" /> </html:select>
For the above to work, your FormBean should have a property *conditions* with type as Collection.
The coditions should be collection of properties and each should have two property Label and Value for display and value for the <option> tag.
In short , conditions property should contain collection of JavaBean given below
public class Option
{
String label ="";
String value = "";
public String getLabel()
{
return label;
}
public String getValue()
{
return value;
}
public void setLabel(String temp)
{
this.label=temp;
}
public void setValue(String temp)
{
this.value=temp;
}
}
Hope this helps
--Yoge
bojke wrote:
Hi,
I don't see optionsCollection in struts1.1 Is there optionsCollection in struts1.1?
I have ArrayList as property of FormBean. ArrayList is collection of beans. Beans of course has a propreties.
Does anybody know how to dislpay e.g bean property beanName using html:options
in drop-down list.
Thanks, Bojan
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]