向PrimeFaces p:schedule事件添加工具提示



有没有办法在p:schedule事件中添加鼠标悬停工具提示?

谢谢,

Rob

使用工具提示属性。自Primefaces 6.0以来,可以将其设置为true,并且每个事件都可以加载自己的描述。

<p:schedule tooltip="true"/>

当然,您必须将描述添加到事件中。

e = new DefaultScheduleEvent();
e.setDescription("<p:outputText value='" + obj.title + "' />");

你是指primeFaces Growl还是工具提示?工具提示通常用于具有TITLE属性的组件,用于在鼠标悬停时显示工具提示。您不能将工具提示添加到事件中,但很可能添加到像<p:commandButton<p:graphicImage这样的组件中。。等对于事件,您最好使用<p:growl />.

示例:

<p:growl id="mygrowl" global="true" />
<p:commandButton actionListener="#{myBean.MyActionListener}" update="mygrowl" />.

看看<p:schedule />是否具有eventlistener属性。

如果您想确保:在

<p:tooltip global="true" />
 <p:growl showDetail="false" showSummary="true" id="globalgrowl" life="3000"/>

然后

相关内容

  • 没有找到相关文章

最新更新