<logic:iterate>在这标签迭代后获得数据库的值以列形式显示,然后我想选择性地删除其中的几列而不对数据库操作,应该怎么做。
<table width="100%" cellpadding="0" cellspacing="0" class="FormListTable"  >
<Tr align="center">
              <td width="5%" nowrap class=FormListTableHead>
               <input class="FormCheckBox" type="CheckBox" onClick="javascript:changeCheck()">
              </td>
              <td width="20%" nowrap class=FormListTableHead>物品名称</td>
              <td width="10%" nowrap class=FormListTableHead>物品类型</td>
              <td width="10%" nowrap class=FormListTableHead>领用数量</td>
              <td width="10%" nowrap class=FormListTableHead>单位</td>
              <td width="15%" nowrap class=FormListTableHead>参考单价</td>
              <td width="20%" nowrap class=FormListTableHead>备注</td>
              <td width="10%" nowrap class=FormListTableHead>领用数量确认</td>
             
            </Tr>

<logic:iterate id="e" name="officeProductApplyList" indexId="ind">
             <tr align="center">
             <td class=FormListTableBody><input class="FormCheckBox" type='checkbox' name='idArray' value='<bean:write name="e" property="resourceId"/>'>&nbsp;</td>
             <td class=FormListTableBody><input readOnly type="text" name='child_pdtName' value="${e.pdtName }" />&nbsp;</td>
             <td class=FormListTableBody><input readOnly type="text" name='child_pdtType' value="${e.pdtType }" />&nbsp;</td>
             <td class=FormListTableBody><input size="10" type="text" name='child_pdtNum' value="${e.pdtNum }" />&nbsp;</td>
             <td class=FormListTableBody><input size="10" type="text" name='child_pdtUnit' value="${e.pdtUnit }" />&nbsp;</td>
             <td class=FormListTableBody><input size="10" type="text" name='child_pdtPrice' value="${e.pdtPrice }" />&nbsp;</td>
             <td class=FormListTableBody><input size="20" type="text" name='child_memo' value="${e.memo }" />&nbsp;</td>
             <td class=FormListTableBody><input size="10" type="text" name='child_intyNum'  />&nbsp;</td>
            
             </tr>
            </logic:iterate>
           </table>