json checkbox java

2278 ワード

     <!--
          <tr> 
            <td  width="15%" height="30" bgcolor="ECF4FD" class="tablex">
                <div align="right">    &nbsp;</div></td>
            <td  width="55%" height="30" bgcolor="ECF4FD" class="tableleft">&nbsp; 
             <select name="missiveType" id="missiveType" style="width:51%">
                 <option value="" selected="selected">--   --</option>
                <c:forEach items="${MissiveTypeBeans}" var="bean">
                  <option value="${bean.MISSIVE_TYPE_ID}" >${bean.NAME}</option>
                </c:forEach>
             </select>
            </td>
          </tr>        
           -->
           <!--
               <tr> 
            <td  width="15%" height="30" bgcolor="ECF4FD" class="tablex">
                <div align="right">    &nbsp;</div></td>
            <td  width="55%" height="30" bgcolor="ECF4FD" class="tableleft">&nbsp; 
            <table width="100%">
      		<%
      		for (int i=0;i<MissiveTypeBeans.size();){
      		MissiveTypeBean bean=new MissiveTypeBean();
      		bean=(MissiveTypeBean)MissiveTypeBeans.get(i);
      		if (i%4==0) 
      		{%>
				  <tr>
			    <%}%>
				    <td width="25%" nowrap="nowrap">
					    <input type="checkbox" id="missiveType" name="missiveType" value="<%=bean.getMISSIVE_TYPE_ID() %>"><font size="2"><%=bean.getNAME()%><%i=i+1;%></font>
					</td>	
				<%if (i%4==0) {%>
				  </tr>
				<%}}%>				    	
			</table>
              &nbsp; 
            </td>
          </tr> 
           -->