IE7: strange problem / nothing shows

hi,
i'm using the b:populator to load my application. this works fine in most browsers, but in IE7, populator hides after a few seconds and I get a blank page. But when I resize the browser window, the application shows! this is very strange. it seems to me, that the app is loaded in background, but not displayed.

this is my code:

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
<html>

        <head>
         
          <link rel="stylesheet" type="text/css" href="css/style.css" />  
                <title>Test</title>
                <script type="text/javascript" src="engine/boot.js"></script>
        </head>
       
       
       
        <body>
       <script xmlns="http://www.w3.org/1999/xhtml" xmlns:b="http://www.backbase.com/2006/btl" xmlns:xi="http://www.w3.org/2001/XInclude" type="application/backbase+xml">


         <xi:include href="bindings/config.xml" />

         <div id="allContent" style="padding: 0px;">
           <b:populator url="app/app.php" events="DOMNodeInsertedIntoDocument" />
         </div>
         



       </script>

        </body>
</html>

populator

Hi i.r,

I have tested your code but of course I used my own app.php.
It just works for me.

I am using Backbase version 4.2.1
I have tested it in FF and IE7.

For additional information, IE only accept a good formatted html.
So you should pay more attention in your app.php. It might be you have un-accepted structure of html such as nested table, en so on en so on.

Andys

hi andys, thanks for your

hi andys,

thanks for your reply. I finally found the solution.
In my app.php is a panelSet, which obviously needs an additional div-container, specifying the width. (I used fullScreen attribute, but it didn't work just with that)