State:
<html:select property="product.stateId" size="1" onchange="loadProducts();loadProducts2();">
<html:options collection="stateList" property="id" labelProperty="name"/>
</html:select>
我想在状态列表中添加另一个选项,例如“请选择状态”,在下拉菜单中。我想我需要修改Java集合对象..
答案 0 :(得分:1)
只需添加代表该标记的<html:option>
标记即可。 TLDDOC允许:
此标记可以在单个
<html:select>
元素中多次使用,与结合使用,或者代替一个或多个<html:option>
或<html:optionsCollection>
元素。