<rich:tree switchType="client" value="#{Bean.tree}" var="one">
<rich:treeNode>
<h:commandLink value="#{one.item1}"
action="#{Bean.getItem()}"
style="color:blue;text-decoration:none;"
title="Click here to view details">
<f:param name="ids" value="#{one.id}">
</f:param>
</h:commandLink>
<a4j:support event="onclick" reRender="productInformation"
action="#{Bean.getItem()}"/>
</rich:treeNode>
</rich:tree>
<rich:panel id="productInformation">
</rich:panel>
嗨,如果我单击链接,我将在该树结构中有一个页面,应该执行相应的操作,但是通过使用 h:commandlink,整个页面将被刷新。所以我要在 h:commandlink 中遇到问题我能够通过使用 f:param 将参数传输到 bean,但是通过使用如何访问 bean 的值,请帮助我了解 jsf 的新手。