是否有一种简单的方法可以将“关闭按钮”添加到丰富的工具提示中(以便在单击此类按钮之前它一直可见)?
非常感谢
使用标签hideEvent="none"
<rich:toolTip name="tooltipTest" id="tooltipTest" hideEvent="none">
<a4j:commandButton value="Close" onclick="#{rich:component('tooltipTest')}.hide(); return false;" />
</rich:toolTip>
richfaces 提供了一个称为rich:popupPanel 的进一步组件来实现这一点。
<h:panelGrid onmouseover="#{rich:component('popup')}.show()">
<h:outputText value="Open popup" />
</h:panelGrid>
<rich:popupPanel id="popup" modal="false" autosized="true" resizeable="false">
<f:facet name="controls">
<h:outputLink value="#"
onclick="#{rich:component('popup')}.hide(); return false;">X</h:outputLink>
</f:facet>
...
</rich:popupPanel>