1 Reply Latest reply on Aug 28, 2007 7:11 AM by yevgen_78

    tabpanel (with tree) and ModalPanel, this combination doesn'

    yevgen_78

      Hi.

      I have a page

      <f:view>
      
       <h:form id="form2">
       <rich:modalPanel id="infoModalPanel">
       </rich:modalPanel>
       </h:form>
      
       <h:form id="form1">
       <rich:tabPanel id="tabPanel">
       <rich:tab label="First">
      
       <h:panelGrid columns="1">
      
       <rich:panel id="panel1">
       <f:facet name="header">
       <h:outputText id="textCatalogTypes" value="Catalog types"/>
       </f:facet>
       <rich:tree id="tree" style="width:100%;"
       value="#{testTabPanelBean.treeData}"
       var="item"
       preserveModel="none"
       nodeFace="#{item.type}">
      
       <rich:treeNode id="testNode" type="testNode">
       <h:outputText id="textForTestNode" value="#{item.name}" />
       </rich:treeNode>
      
       </rich:tree>
       </rich:panel>
       </h:panelGrid>
      
       </rich:tab>
       </rich:tabPanel>
       </h:form>
       </f:view>
      


      In the tree a can't see the selected node.
      If no modal panel on this page, i see each node (over the mouse pointer) as link (with underline). If i add a modal panel to the page - doesn't works.

      Java 1.5
      Tomcat 5.5.20
      RichFaces 3.1.0 (21.08.2007)

      If somebody create a bug in JIRA i can put a war with this example.

      Thanks.