如何使用显示标记导出到Excel时删除单选按钮?

时间:2012-02-08 05:29:31

标签: java jsp java-ee struts

我想导出在jsp页面上使用display标签显示的表格。 但是当我导出它时,它会导出带表格的单选按钮

以下是显示标记的片段

<display:table requestURI="CustListReportDetails.do" name="sessionScope.SESSION_CUST" id="formtable" pagesize="100" style="width:100%; border:0; cellspacing:0; cellpadding:10; align:center;" export="true">

    <display:table requestURI="CustListReportDetails.do" name="sessionScope.SESSION_CUST" id="formtable" pagesize="100" style="width:100%; border:0; cellspacing:0; cellpadding:10; align:center;" export="true">
    <display:column title="" style="width:10px">
        <input type="radio" name="recordIdentifier" value="${formtable.customerId}" onclick="javascript:setRoleCode('${formtable.customerId}');"/>
    </display:column>
    <display:column property="name" title="Name" /> 
    <display:column property="contactPerson" title="Contact Person" />              
    <display:column property="gender" title="Gender" /> 
    <display:column property="dob" title="Date Of Birth" /> 

    <display:setProperty name="export.excel.filename" value="Customer_reportExcel.xls"  />  
</display:table>

所需的xsl文件中不应包含单选按钮。

1 个答案:

答案 0 :(得分:3)

问题解决了 在包含单选按钮的显示列标签中,我放置了media =“html”,现在它没有导出Excel工作表中的单选按钮

代码在上面的代码段改变了::

display:column title="" style="width:10px" **media="html"**