0

如果用户单击这些组件之一,是否可以在 JSF 1.2 组件中显示预览文本,例如在输入字段、选择菜单或输出文本中,并且预览文本消失?

例如,我看到属性 defaultLabel 可以用在 Rich faces 中?JSF 组件是否有类似的属性?

谢谢和Greetz Marwief

4

1 回答 1

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

于 2013-10-22T08:56:08.047 回答