触发/模拟通过ClientListerner以编程方式单击事件

时间:2015-08-07 11:06:56

标签: javascript jsf oracle-adf

到目前为止,我已按照文档设法获取按钮的click事件。我现在正在努力的是以编程方式触发ADF组件的click事件。

源代码如下:

<af:showDetailItem id="pane1" text="Panel Label 1" disclosed="true">
    <af:commandButton text="commandButton 1" id="cb1">
        <af:clientListener method="showNext" type="action" />
    </af:commandButton>
</af:showDetailItem>

<af:showDetailItem id="pane2" text="Panel Label 2">
    <af:commandButton text="commandButton 2" id="cb2">
        <af:clientListener method="showNext" type="action" />
    </af:commandButton>
</af:showDetailItem>

<af:showDetailItem id="pane3" text="Panel Label 3">
    <af:commandButton text="commandButton 3" id="cb3">
        <af:clientListener method="showNext" type="action" />
    </af:commandButton>
</af:showDetailItem>

的Javascript

function showNext(evt){        
   var src = evt.getSource();
   var showDetailItemNode = src.getParent(); // targets the showDetailItem tag     
   /* how do I trigger the click event of this node */
}

所以基本上我想要实现的是当点击按钮#cb1时,我想模拟showDetailItem#pane1的click事件,依此类推......

3 个答案:

答案 0 :(得分:3)

<af:serverListner> 

是一个标记,您可以将其与<af:clientListner>一起使用,以将您的事件传播到托管bean。更重要的是,您还可以将上述标记与<af:showDetailItem>相关联。希望它有所帮助。

答案 1 :(得分:3)

答案 2 :(得分:2)

您可以遍历手风琴组件的子节点,以找出当前公开的showDetailItem。 然后将其设置为disclosure = false,并为下一个设置为true。