在我的pge中我有这个:
<p:layout style="min-width:1400px;min-height:600px;" id="layout">
<p:layoutUnit position="west" resizable="true" size="300">
a tree ...
</p:layoutUnit>
<p:layoutUnit id="center" position="center" size="800">
tabs ..
</p:layoutUnit>
</p:layout>
当用户选择树节点时,我应该在选项卡组件中显示所选节点信息,该选项卡位于中心位置的layoutUnit中(id =“center”) 最初这个layoutUnit应该是空的 知道怎么做吗?
答案 0 :(得分:1)
使用标签组件的rendered
属性。
当您的树组件中触发了一些rendered
时,此actionlistener
属性可以从“false”切换为“true”(此值将保存在bean中)。
看看这个问题的具体步骤(并检查第二个答案,而不是第一个答案):
How can I show/hide component with JSF?
注意:这不是特定的表面,所以我从你的问题中删除了标签以反映这一点。