使用display标签格式化导出到excel的表的设计

时间:2013-09-17 11:38:07

标签: java css excel jsp displaytag

是否可以使用display tag设计导出到excel的表格外观         (就像在jxl中一样)我找不到关于这个主题的任何信息。有人有任何想法吗?

      <display:table id="data" name="sessionScope.UserForm.actorList" requestURI="/userAction.do" pagesize="10" export="true" >
        <display:column property="tvShow" title="TV Show" sortable="true"   />
        <display:column property="userName" title="User Name" sortable="true"  />
        <display:column property="emailId" title="Email Id" sortable="true"  />
        <display:setProperty name="export.excel.filename" value="Details.xls"/>
        <display:setProperty name="export.pdf.filename" value="Details.pdf"/>
        <display:setProperty name="export.pdf" value="true" />
     </display:table>

1 个答案:

答案 0 :(得分:1)

我不确定我的答案是否适合您的情况。您可以定义自己的导出类。您可以通过扩展当前的excel导出类来定义该类。也许你的目标可以在新课程上实现一点修改。