<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Thanks for your answer bue I still have a problem.<br>
My application is composed as follow :<br>
A mainComponent which contained a&nbsp; tabPanel component.<br>
this tabPanel&nbsp; component&nbsp; contains some components too. <br>
one of these component is an accordion component so, it contains again
some components.<br>
I have a problem with one of them which is a sort of Tree I created. It
works perfectly on all browsers <br>
except for IE6. In fact, when the page is loaded, the style of this one
is not loaded. I have to refresh my page to get the style.<br>
When this same component is less depth in the component hierachy, it
seems to work.<br>
<br>
Any ideas ?<br>
<br>
Thanks<br>
<br>
Sylvain<br>
<br>
<br>
<br>
<blockquote
 cite="mid:!~!UENERkVCMDkAAQACAAAAAAAAAAAAAAAAABgAAAAAAAAAx5oTyKKcHEiH5jLobrYqEMKAAAAQAAAAE0180bhmm0+JyQKZg4mVPQEAAAAA@seaswork.com"
 type="cite">
  <pre wrap="">Hi Sylvain,

        for web browsers read a fresh complete version of the page pres
Ctr-R or make click on reload button while pressing shift. That ensures that
all resources including css and js files will not used from the UA cache.

        IE6 has a well know hack that makes it capable of something it's
not: proper render of PNG's. Amazing isn't?

        In an application I use in the root component:

updateRoot: anHtmlRoot
        "Updates the root of the html document by adding the title and
subtitle"        

        super updateRoot: anHtmlRoot.        
        anHtmlRoot title: 'Site blah blah'.
        
        anHtmlRoot if lessThan; ie7; do:[
                anHtmlRoot javascript 
                        attributeAt: #defer put: '';
                        url: (BlahProductionLibrary urlOf: #pngfixJs)


        that introduces the hack from a js file I've downloaded from:
<a class="moz-txt-link-freetext" href="http://homepage.ntlworld.com/bobosola/pnghowto.htm">http://homepage.ntlworld.com/bobosola/pnghowto.htm</a>

        cheers,

Sebastian Sastre

 

  </pre>
  <blockquote type="cite">
    <pre wrap="">-----Mensaje original-----
De: <a class="moz-txt-link-abbreviated" href="mailto:seaside-bounces@lists.squeakfoundation.org">seaside-bounces@lists.squeakfoundation.org</a> 
[<a class="moz-txt-link-freetext" href="mailto:seaside-bounces@lists.squeakfoundation.org">mailto:seaside-bounces@lists.squeakfoundation.org</a>] En nombre 
de Sylvain Pralon
Enviado el: Mi&eacute;rcoles, 24 de Octubre de 2007 12:12
Para: <a class="moz-txt-link-abbreviated" href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a>
Asunto: [Seaside] FileLibrary refreshment IE

Hello,

I currently have a problem with my seaside application and IE 
6 only (what a surprise ?).
In fact my application use a WAFileLibrary which contained 
lots of files including some png, css, and js.
The first problem is when I display for the first time my 
page I have to refresh it because all the component do not 
have its css applied.
After that, as I use some scriptaculous scripts, I refresh 
only some html elements in my page, and when I do that, the 
support for the png transparency is not available for the 
picture in this element. So i refresh the page and only after 
that it is ok.

This problem is only on IE6. IE7 and firefox just do it fine.
All my css are stored into my WAFileLibrary, nothing in a 
style method of my components. Should I do it this way, copy 
the css in my component ?.

Thanks for help, any ideas are welcome !


Sylvain

_______________________________________________
seaside mailing list
<a class="moz-txt-link-abbreviated" href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a>
<a class="moz-txt-link-freetext" href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a>
    </pre>
  </blockquote>
  <pre wrap=""><!---->
_______________________________________________
seaside mailing list
<a class="moz-txt-link-abbreviated" href="mailto:seaside@lists.squeakfoundation.org">seaside@lists.squeakfoundation.org</a>
<a class="moz-txt-link-freetext" href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a>

  </pre>
</blockquote>
<br>
</body>
</html>