Page 1 of 1

showing a table after a item is selected

Posted: 14 Sep 2010, 20:07
by Sha_Dan
Hi, I am working on a item selection such that when the item is selected it will display a table with attribute which can be edited.

Code: Select all

<p:tree update="attributeList" value="#{treeManagedBean.root}" var="node" selectionMode="single" selection="#{treeManagedBean.selectedNode}">
                                        <p:treeNode>
                                            <h:outputText value="#{node}" />
                                        </p:treeNode>
                                    </p:tree>      


This is the table that i wanted it to display after the item is selected, with all the attributes listed in the table and the extra outputText can be used to make amendment in the table.

Code: Select all

    
<p:dataTable id="attributeList" var="attributes" value="#{treeManagedBean.attributesList}">
                                        <p:column>
                                            <f:facet name="header">
                                                <h:outputText value="#{attributes}" />
                                                <h:outputText value="#{treeManagedBean.input}" />
                                            </f:facet>
                                            <h:outputText />
                                        </p:column>
                                    </p:dataTable>                  
I try to make it display but it didnt work. I wonder what went wrong. Cany anyone advise? thanks! :)

Re: showing a table after a item is selected

Posted: 15 Sep 2010, 17:22
by Sha_Dan
solved it.