我如何使用af:scrollComponentIntoViewBehavior在af:树



如何在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

相关内容

  • 没有找到相关文章

最新更新