I see two things that can flush the response.
<s:head theme="ajax"/>
And 
<jsp:include page="menu.jsp" />

I think that you should try to include menu.jsp with tiles.

-----Message d'origine-----
De : Giovanni Azua [mailto:[EMAIL PROTECTED] 
Envoyé : mercredi 17 octobre 2007 11:41
À : Struts Users Mailing List
Objet : Re: Struts 2 + tiles + displaytag export = firefox hang or exception

hi Leonard,

Many thanks for your help.

Since I use tiles, it is the main difference I think. I have a template layout 
and actual page that looks as shown below.

Thanks again.

best regards,
Giovanni

***************************** Tiles LAYOUT
*************************************
<%@ taglib uri="http://tiles.apache.org/tags-tiles"; prefix="tiles" %> <%@ 
taglib prefix="s" uri="/struts-tags" %> <tiles:importAttribute name="title" 
scope="request"/> <html>
    <head>
        <title><tiles:getAsString name="title"/></title>
        <meta http-equiv="Content-Type"
            content="text/html; charset=iso-8859-1" />
        <script type="text/javascript" src="js/drop_down.js"></script>
        <script type="text/javascript" src="js/thumbnail_popup.js"></script>
        <style type="text/css">
            @import "css/screen.css";
            @import "css/main.css";
            @import "css/menu.css";
        </style>
        <s:head theme="ajax"/>       
       </head>
<body>
    <jsp:include page="menu.jsp" />
    <br />  
    <div id="bodyColumn">
        <div id="contentBox">
            <div class="section">
                <h2><tiles:getAsString name="title"/></h2>
            </div>                       
             <tiles:insertAttribute name="body"/>               
        </div>
    </div>
</body>
</html>

***************************** Page Replacing BODY
*************************************

<%@ page contentType="text/html; charset=UTF-8" %> <%@ taglib prefix="display" 
uri="http://displaytag.sf.net"; %>

<display:table name="mishitModels" defaultorder="descending" 
pagesize="10" requestURI="" export="true" sort="list"
    
decorator="com.sag.optimizer.ui.web.displaytag.decorator.MishitModelDecorator">
    <display:column property="historicBook" title="Book" sortable="true" 
headerClass="sortable" />
    <display:column property="coeff1" title="Coeff1" 
format="{0,number,0.000}" sortable="true" headerClass="sortable" />
    <display:column property="coeff2" title="Coeff2" 
format="{0,number,0.000}" sortable="true" headerClass="sortable" />
    <display:column property="coeff3" title="Coeff3" 
format="{0,number,0.000}" sortable="true" headerClass="sortable" />
    <display:column property="coeff4" title="Coeff4" 
format="{0,number,0.000}" sortable="true" headerClass="sortable" /> 
</display:table>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


This e-mail, any attachments and the information contained therein ("this 
message") are confidential and intended solely for the use of the addressee(s). 
If you have received this message in error please send it back to the sender 
and delete it. Unauthorized publication, use, dissemination or disclosure of 
this message, either in whole or in part is strictly prohibited.
--------------------------------------------------------------------------------------------------------------
Ce message électronique et tous les fichiers joints ainsi que  les informations 
contenues dans ce message ( ci après "le message" ), sont confidentiels et 
destinés exclusivement à l'usage de la  personne à laquelle ils sont adressés. 
Si vous avez reçu ce message par erreur, merci  de le renvoyer à son émetteur 
et de le détruire. Toutes diffusion, publication, totale ou partielle ou 
divulgation sous quelque forme que se soit non expressément autorisées de ce 
message, sont interdites.
-------------------------------------------------------------------------------------------------------------


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to