Hello All,
I am testing the appfuse light (spring mvc) demo application that uses
displaytag 1.1/sitemesh in weblogic 9.2 and the export doesn't work
correctly. It exports the whole page to excel not the table records.
It works fine in Tomcat. Any one has seen this issue before?
[code]
<%@ include file="/taglibs.jsp"%>
 
<title><fmt:message key="userList.title"/></title>
 
<button onclick="location.href='userform.html'"style="float: right;
margin-top: -30px; width: 100px">Add User</button>
 
<display:table name="users" class="table" requestURI="" id="userList"
export="true" pagesize="4">
<display:setProperty name="export.pdf.filename" value="users.pdf"/>
<display:column property="id" sortable="true" href="userform.html"
media="html"
paramId="id" paramProperty="id" titleKey="user.id"/>
<display:column property="id" media="csv excel xml pdf" titleKey="user.id"/>
<display:column property="firstName" sortable="true"
titleKey="user.firstName"/>
<display:column property="lastName" sortable="true"
titleKey="user.lastName"/>
<display:column titleKey="user.birthday" sortable="true"
sortProperty="birthday">
<fmt:formatDate value="${userList.birthday}" pattern="${datePattern}"/>
</display:column>
</display:table>
 
<script type="text/javascript">highlightTableRows("userList");</script>
[/code]

Thanks
-- 
View this message in context: 
http://www.nabble.com/export-function-not-working-correctly-with-BEA-weblogic-9.2-tp14372544p14372544.html
Sent from the DisplayTag - General mailing list archive at Nabble.com.


-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to