我想用丰富的 hotkey.Hotkey 替换 a4j:commandButton 或链接以启用/禁用丰富的工具提示。任何帮助将不胜感激。我使用的是富面 4,因此富热键中不存在处理程序属性
代码片段如下。
<a4j:commandButton id="button1" action="#{bean.showTooltip()}"
value="Show Tooltip" render="staIns1"></a4j:commandButton>
<rich:panel id="staIns1" styleClass="tooltip-text" style="border:0; background:none">
<h:inputText id="a" value="#{bean.value}" style="width: 100%"></h:inputText>
<rich:tooltip followMouse="false" showDelay="1500"
rendered="#{bean.showPanel}" id="staInsTt1" styleClass="tooltip"
layout="block" style="width:200px;font-style:italic">
<h:outputLabel value="#{bean.property1}" />
</rich:tooltip>
</rich:panel>