如何设置集合中 Struts select 标签的默认值
How to set default value of Struts select tag from the Collection
我正在使用 <html:select>
标签来读取和显示集合中的值。
<tr>
<td><bean:message key="prompt.my.amount" /></td>
<td>
<html:select property="userPref.amount" style="width:170px">
<html:options collection="myAmts" property="value" labelProperty="label" />
</html:select>
</td>
</tr>
Java 文件包含集合值。
public Collection getMyAmts() {
if (Utils.empty(myAmts)) {
myAmts = new Vector();
myAmts.add(new LabelValueBean("ONE", "one"));
myAmts.add(new LabelValueBean("TWO", "two"));
myAmts.add(new LabelValueBean("Three", "three"));
myAmts.add(new LabelValueBean("FOUR", "four"));
}
return myAmts;
}
我想在下拉列表中显示值 FOUR
作为默认值。
我怎样才能做到这一点?
默认值在 value
属性中设置。
Have you tried to use the value attribute on the tag?
<html:select property="status" value="...your status choise here..."> <html:optionsCollection name="statusList"
label="description" value="id" /> </html:select>
参考文献:
- Set default value of select using java in Struts 1.x
我正在使用 <html:select>
标签来读取和显示集合中的值。
<tr>
<td><bean:message key="prompt.my.amount" /></td>
<td>
<html:select property="userPref.amount" style="width:170px">
<html:options collection="myAmts" property="value" labelProperty="label" />
</html:select>
</td>
</tr>
Java 文件包含集合值。
public Collection getMyAmts() {
if (Utils.empty(myAmts)) {
myAmts = new Vector();
myAmts.add(new LabelValueBean("ONE", "one"));
myAmts.add(new LabelValueBean("TWO", "two"));
myAmts.add(new LabelValueBean("Three", "three"));
myAmts.add(new LabelValueBean("FOUR", "four"));
}
return myAmts;
}
我想在下拉列表中显示值 FOUR
作为默认值。
我怎样才能做到这一点?
默认值在 value
属性中设置。
Have you tried to use the value attribute on the tag?
<html:select property="status" value="...your status choise here..."> <html:optionsCollection name="statusList" label="description" value="id" /> </html:select>
参考文献:
- Set default value of select using java in Struts 1.x