我有一个a4j:commandLink
应该a4j:outputPanel
在点击时执行的。然而,即使我在执行标签中给出了 ID,它也会在点击时执行表单。
<a4j:commandLink id="more_message_button" value="Load More Comments"
action="#{feedbackAction.setFeedbackIdForExpansion(unitfeedback.feedbackId)}"
execute="expandedList,more_message_button" href="javascript:void(0)"
limitRender="true" render="expandedList,more_message_button">
</a4j:commandLink>`
<a4j:outputPanel layout="block" id="expandedList">
<a4j:repeat value="#{feedbackAction.getCommentsForNextHop(unitfeedback)}"
var="unitComment" rowKeyVar="idx">
.
.
.
</a4j:outputPanel>
对此有任何帮助以覆盖默认行为,或者我在这里遗漏了什么
问候, 南迪什