Hi,
Please provide some solution, I have been posting the same artical , but not able to receive a single reply, I have 2 vertical panels, in the left panel I have a tree, if I click on the particular node (branch or leaf), the content related to that tree should be displayed in the right tree,
Please provide a sample example, or this feature is possible or not?
I appriciate your help....
Thanks and Regards
Sandy

Linking Of Panels
4 August, 2008 - 17:05 — yudiHi Sandy,
It is possible to do that. You could load some content on the right panel when certain tree leaf is clicked by executing load command on the select event in tree leaf. Use "replaceChildren" mode attribute to replace the current panel right content with the new content.For example:
--- other tree and tree branch code ---
<b:treeLeaf label="My File.doc" >
<e:handler event="select" >
<c:load url="myContent.xml" destination="id('panelRight')" mode="replaceChildren" />
</e:handler>
</b:treeLeaf>
--- other code ---
</b:panel>
<b:panel id="panelRight" backgroundColor="#A4C1E7" >
</b:panel>
~Yudi