html:radio 单选组

来源:互联网 发布:java常用util工具类 编辑:程序博客网 时间:2024/05/16 03:48

     <logic:notEmpty name="CustomerForm" property="resStatusList"> 
         <logic:iterate id="resStatusBean" name="CustomerForm" property="resStatusList" type="com.eastpro.common.bean.DropDownListBean">
           <html:radio idName="resStatusBean" name="CustomerForm" property="resStatus" value="lookup_field">
             <bean:write name="resStatusBean" property="lookup_desc"/>
           </html:radio>
         </logic:iterate> 
     </logic:notEmpty>

 

 

CustomerForm是ActionForm

其中resStatusList是一个ArrayList

resStatusBean是一个bean, lookup_field和lookup_desc是它的属性

resStatus是CustomerForm的属性

 

原创粉丝点击