我正在使用 JSF 1.2、Seam 2.2.2 和 Richfaces 3.3.3。我有一个 a4j:support 事件,当有人将鼠标悬停在链接上时会调用该事件。但是这个函数只在页面加载后被调用一次。如果我再次将鼠标悬停在链接上,a4support 事件不会调用该函数。任何人都知道可能是什么原因?
<s:div style="padding-top:10px;">
<rich:dataTable id="pendingOptyTbl" value="#{searchResultList}"
var="item" style="width: 100%; border: none;">
<rich:column style="border: none;">
<s:div>
<h:outputText value="#{item.label} : " />
<h:outputLink value="/aafdemo/pages/#{item.label}/#{item.label}.seam" styleClass="actionLink">
<h:outputText value="#{item.value.name}" />
<f:param name="#{item.label}Id" value="#{item.value.id}" />
<a4j:support event="onmouseover" immediate="true" action="#searchController.test()}" ajaxSingle="true" reRender="details"/>
</h:outputLink>
</s:div>
</rich:column>
</rich:dataTable>