如何在af:tree中使用af:scrollComponentIntoViewBehavior ?
<af:tree value="#{MBMenu.model}" var="node" id="tr1" summary="summary" initiallyExpanded="true"
fetchSize="-1" contentDelivery="immediate" expandAllEnabled="true">
<f:facet name="nodeStamp">
<af:link text="#{node.text}" id="cl1">
<af:scrollComponentIntoViewBehavior componentId="#{node.action}" focus="true"
subTargetId="content"/>
</af:link>
</f:facet>
</af:tree>
我尝试了上面的代码,但一无所获。
但是下面的代码可以工作
<af:link text="text" id="cl2">
<af:scrollComponentIntoViewBehavior componentId="#{MBMenu.action}" focus="true"
subTargetId="content"/>
</af:link>
有人把它修好了吗?
我刚刚让它工作,目标componentId
必须将clientComponent
属性设置为true