Hi,

does anyone know why the value of an h:inputText is not shown in a t:tree2 component?
I put the inputText outside of the tree and there it works fine...

<t:tree2 id="treeGoSlim"
            value="#{functionalPageTree.modelBase}"
            var="node"
            showRootNode="false"
            showLines="true">

       <f:facet name="expandNode">

           <h:panelGrid id="treeGrid" columns="2">
               <h:commandLink value="#{node.description}"
actionListener="#{functionalPageTree.addChildren}"
                              immediate="true"/>
               <h:panelGrid>

                   <h:inputText value="100%"
style="font-size:9;color:black;text-align:center;height:11;background:#84BC73;border-style:none"
                                size="40"
                                disabled="true"/>

                   <h:inputText value="80%"
style="font-size:9;color:black;text-align:center;height:11;background:lightgray;border-style:none"
                                size="30"
                                disabled="true"/>

               </h:panelGrid>
           </h:panelGrid>

       </f:facet>

   </t:tree2>


Cheers
Wolfgang

Reply via email to