0 Replies Latest reply on Feb 3, 2010 10:01 AM by cervo

    rich:layoutPanel IE8 problem

      Hi,

       

      I have a simple application which uses nested rich:layout elements. The outer layout has

      a left, center and right panel. The center panel in turn contains a rich.layout with a top, left, center and right panel.

      The top panel contains a simple h:outputText element.In FireFox the text is displayed properly, in IE8 (I did not

      test older versions of IE) however, the text is not displayed, only after starting the developer tools and selecting an

      element. Is this is a know issue and are there any know workarounds?

       

      My test page looks like:

       

          <rich:layout>
              <rich:layoutPanel position="left">
              Outer Left Panel
              </rich:layoutPanel>
              <rich:layoutPanel position="center" width="80%">
              <rich:panel style="border=solid">
                  <rich:layout>
                      <rich:layoutPanel position="top">
                      <h:outputText value="Inner Top Panel"/>
                      </rich:layoutPanel>
                      <rich:layoutPanel position="left" width="40%">
                          <rich:panel style="border=solid">
                          Inner Left Panel
                          </rich:panel>
                      </rich:layoutPanel>

       

                      <rich:layoutPanel position="center" width="50%">
                      Inner Center Panel
                     
                      </rich:layoutPanel>

       

                      <rich:layoutPanel position="right" width="10%">
                          Inner Right Panel
                      </rich:layoutPanel>
                  </rich:layout>
                  </rich:panel>
              </rich:layoutPanel>
              <rich:layoutPanel position="right">
              Outer right panel
              </rich:layoutPanel>
              </rich:layout>