You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by ly...@mmm.com on 2006/10/24 22:21:22 UTC

t:popup inside t:treeColumn

Hello All, 

Does anyone know how to render popup over a tree column? I tried this, but 
it didn't render column at all:

<t:treeColumn>
     <f:facet name="header">
          <h:outputText value="Name" />
        </f:facet>
 
 
        <t:popup id="a"
                styleClass="popup"
                closePopupOnExitingElement="true"
                closePopupOnExitingPopup="true"
                displayAtDistanceX="10"
                displayAtDistanceY="10" >
                <h:outputText value="#{country.name}"/>
                <f:facet name="popup">
                    <h:panelGroup>
                        <h:panelGrid columns="1" >
                        <h:outputText value="#{country.cities}"/>
                        </h:panelGrid>
                    </h:panelGroup>
                </f:facet>
        </t:popup>
 
</t:treeColumn>