我有这段代码:
<richfaces:comboBox
value="#{ChoixContratBean.selectedFormule"}
suggestionValues="#{ChoixContratBean.formules}">
<a4j:support event="onmouseover"
action="#{ChoixContratBean.getDescriptionFormule}"
reRender="reponse" />
</richfaces:comboBox>
我希望当用户使用鼠标悬停组合中的不同值时,产品的新描述会显示在:
<jsf:outputText
id="reponse"
value="#{ChoixContratBean.descriptionFormuleSelected}" />
当鼠标悬停richfaces组合值时,不会触发任何事件;相反,触发的事件是组合本身的简单鼠标悬停。
我必须做什么让值接收事件触发器?