p:tooltip 是否有任何属性作为我们使用 rich:tooltip 获得的方向?我基本上希望我的工具提示显示在图像的右上角。不知道该怎么做。p:tooltip 的属性数量似乎非常有限。以下是richfaces的代码。
<h:commandLink value="Simple Link" id="link">
<rich:toolTip followMouse="true" direction="top-right" mode="ajax" value="#{bean.toolTipContent}" horizontalOffset="5"
verticalOffset="5" layout="block">
<f:facet name="defaultContent">
<f:verbatim>DEFAULT TOOLTIP CONTENT</f:verbatim>
</f:facet>
</rich:toolTip>