如何在JSF组件中显示previewtext?

时间:2013-10-22 07:56:21

标签: java jsf

是否可以在JSF 1.2组件中显示预览文本,例如在inputfields,selectmenue或outputtext中,如果用户点击其中一个组件,预览文本就会消失?

我看到属性defaultLabel可以在Rich faces中使用吗? JSF组件是否具有类似的属性?

谢谢&格尔茨 Marwief

1 个答案:

答案 0 :(得分:0)

如果您的意思是使用占位符,则可以查找Primefaces watermark或RichFaces placeholder

另一种方法:使用JSF2.2

查看直通
<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:h="http://xmlns.jcp.org/jsf/html"
  xmlns:f="http://xmlns.jcp.org/jsf/core"
  xmlns:p="http://xmlns.jcp.org/jsf/passthrough">

<h:inputText value="#{item.name}" p:placeholder="my item"/>
 ...

将呈现为:

 <input type="text" ... placeholder="my item">

但要注意,这是 HTML5