2
 <p:panel id="sports" header="&lt;p:inputText id='headerz' value='text of headerz'" toggleable="true" closable="true" >  

this is my code. Page doesnt show p:inputText. on the source code of page i can see the input text with id=headerz but it is greyed.

4

2 回答 2

3

尝试这个:

<p:panel id="sports" toggleable="true" closable="true" >
    <f:facet name="header">
        <p:inputText id='headerz' value='text of headerz' />
    </f:facet>  
</p:panel>
于 2013-07-31T04:50:41.960 回答
0

这是因为该header属性用于文本而不是 JSF 标记。换句话说,您可以使用它来给面板一个标题,但不能添加 JSF 组件。

于 2013-07-30T12:44:40.453 回答