下拉列表应由表单类中的LabelValueBean对象的列表表示,如下所示。
List<LabelValueBean> listOfStandards = new ArrayList<LabelValueBean>();//popoulate the listmyForm.setStandardList(listOfStandards);
在jsp中,您可以按以下方式访问下拉列表中的列表:
<html:select property="standard" styleId="standard"> <html:optionsCollection name="myForm" property="standardList" label="label" value="value" /></html:select>
注意:确保表单中具有“标准”属性。将使用下拉列表中所选项目的值设置“标准”属性。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)