Jsf Prime faces-消息工具提示赢得';t显示

Jsf Prime faces-消息工具提示赢得';t显示,jsf,primefaces,Jsf,Primefaces,我希望将错误消息显示为工具提示,如本例所示: 以下是我的JSF代码片段: <h:form id="loginForm"> <p:messages id="messages" showDetail="true" closable="true" for="login"/> <h:panelGrid columns="3" cellpadding="3" width="100%"> <p:outputLabel for="use

我希望将错误消息显示为工具提示,如本例所示:

以下是我的JSF代码片段:

<h:form id="loginForm">
    <p:messages id="messages" showDetail="true" closable="true" for="login"/>
    <h:panelGrid columns="3" cellpadding="3" width="100%">
        <p:outputLabel for="username" value="Login: "/>
        <p:inputText style="width: 100%;" value="#{loginBean.username}" required="true" id="username"/>
        <p:message for="username" display="tooltip"/>

        <p:outputLabel for="password" value="Password:"/>
        <p:password style="width: 100%;" value="#{loginBean.password}" required="true" id="password"/>
        <p:message for="password" display="tooltip"/>
    </h:panelGrid>
    <p:commandButton value="OK" action="#{loginBean.login()}" update="loginForm" style="float: right; margin-top: 5px;"/>
</h:form>

以下是登录行的HTML输出代码段:

<tr>
<td><label id="loginForm:j_idt9" class="ui-outputlabel ui-widget ui-state-error" for="loginForm:username">Login: <span class="ui-outputlabel-rfi">*</span></label></td>
<td><input id="loginForm:username" name="loginForm:username" type="text" value="" style="width: 100%;" aria-required="true" class="ui-inputfield ui-inputtext ui-widget ui-state-default ui-corner-all ui-state-error" role="textbox" aria-disabled="false" aria-readonly="false"></td>
<td><div id="loginForm:j_idt10" aria-live="polite" class="ui-message ui-helper-hidden ui-message-error ui-widget ui-corner-all"><span class="ui-message-error-icon"></span><span class="ui-message-error-detail">Login: Validation Error: Value is required.</span></div></td>
</tr>

登录:*
登录:验证错误:需要值。
很明显,工具提示有HTML代码&输入有红色的轮廓,但是当我将鼠标悬停在输入框上时,工具提示消息不会显示。我的表单放置在对话框窗口中


Primefaces 6.0.RC2

您将此代码段放入
..
成对标记中,然后放入
..外部成对标记:

<p:tooltip />


这只是源代码而已(暂时的,为了简单起见,我不使用bean及其属性、方法):



这是我的截图:


是的,这就成功了。他们应该在展示中更好地解释这一点。它看起来就像第一个例子的一部分。泰。
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://xmlns.jcp.org/jsf/html"
      xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
      xmlns:f="http://xmlns.jcp.org/jsf/core"
      xmlns:p="http://primefaces.org/ui">

    <h:head>        
    </h:head>

    <h:body>

        <p:tooltip />

        <h:form id="loginForm">
            <p:messages id="messages" showDetail="true" closable="true" for="login"/>
            <h:panelGrid columns="3" cellpadding="3" width="100%">
                <p:outputLabel for="username" value="Login: "/>
                <p:inputText style="width: 100%;" required="true" id="username"/>
                <p:message for="username" display="tooltip"/>

                <p:outputLabel for="password" value="Password:"/>
                <p:password style="width: 100%;" required="true" id="password"/>
                <p:message for="password" display="tooltip"/>
            </h:panelGrid>
            <p:commandButton value="OK" update="loginForm" style="float: right; margin-top: 5px;"/>
        </h:form>
    </h:body>

</html>