xhtml文本字段,里面隐藏着长标签

时间:2015-09-28 07:50:06

标签: html jsf primefaces label

所以我在里面有一个带有长标签的搜索框,例如:

“姓名,姓氏,PersonCode等......”

文本字段太小,无法容纳所有内容。

当我将鼠标移到它上面时,我需要看到完整的标签。

我用于文本字段的代码是:

<p:outputPanel id="keywords_filter" rendered="#{!externalRegistryQueryController.filter.detailedFilter}">
    <p:inputText value="#{externalRegistryQueryController.filter.keywords}" placeholder="#{msg.extreg_keywords_placeholder}"/>
</p:outputPanel>

1 个答案:

答案 0 :(得分:2)

使用/** * @ORM\ManyToOne(targetEntity="ProductTypes") * @ORM\JoinColumn(name="prtyID", referencedColumnName="id") */ protected $type; 属性:

title

<p:inputText value="#{externalRegistryQueryController.filter.keywords}" placeholder="#{msg.extreg_keywords_placeholder}" title="#{msg.extreg_keywords_placeholder}"/> 属性在PrimeFaces title元素上定义,并映射到HTML inputText属性,该属性为您提供了您正在请求的工具提示行为。