大家都是JSF技术的新手,如何使用rich:tree标签在加载页面时自动展开树。
<rich:tree switchType="client"
value="#{Bean.deviceServiceTreeRoot}" var="item">
<rich:treeNode>
<h:commandLink value="#{item.name}"
action="#{Bean.getLink()}"
style="color:blue;text-decoration:none;"
title="#{item.Description}">
<f:param name="productIDs" value="#{item.ID}"></f:param>
</h:commandLink>
</rich:treeNode>
</rich:tree>
现在通过使用上面的代码,我可以显示一个树形结构。上面是一个页面中出现点击提交按钮后它会重定向到另一个页面在那个页面我需要让树在扩展模式下如何实现那可能吗?
答案 0 :(得分:1)
<rich:treeNode expanded="#{true}">
为我做了诀窍