直通不工作

时间:2016-07-29 15:26:19

标签: jsf-2.2 mojarra

我尝试了一些不同的变体,但似乎都没有。

规格:

  • Mojarra 2.2.5

  • Primefaces 6.0

  • JSF 2.2

1。)Passthrough

xmlns:h="http://java.sun.com/jsf/html"
xmlns:ps="http://java.sun.com/jsf/passthrough"

....

<h:inputText id="sign_in_useremail" type="text" class="form-control" ps:placeholder="useremail" />

2。)PassThroughAttribute

xmlns:h="http://java.sun.com/jsf/html"
xmlns:pc="http://xmlns.jcp.org/jsf/core"

...
<h:inputText id="sign_in_useremail" type="text" class="form-control"">
   <pc:passThroughAttribute name="sign_in_useremail" value="useemail" />
</h:inputText>

3。)只用标签进行远射

<h:inputText id="sign_in_useremail" type="text" class="form-control" label="useremail">

1 个答案:

答案 0 :(得分:2)

1)你正在使用2.2之前的命名空间,2)你混合了2.2和2.2之前的命名空间。只需使它们符合2.2标准。

另见