I want to put a dynamic string inside a p:panel header
just like using it with p:inputText
for example value="#{object.property}"
is it possible to do that ?
相关问题
- java.lang.NullPointerException at java.io.PrintWri
- java.lang.NullPointerException at java.io.PrintWri
- h:selectOneMenu in p:dataTable doesn't submit
- h:selectOneMenu in p:dataTable doesn't submit
- Infinite setStatus() loop when requesting a JSF pa
相关文章
- Comparing string and boolean in Expression languag
- How to allow numbers only using f:validateRegex
- JSF 2.0: ajax request when press ENTER
- Formatting a double in JSF
- change rendered attribute from managed bean
- How to show confirm (richfaces) popup when
- How to override primefaces component api class wit
- JPA lazy loading Collections in JSF view - better
Just use
<f:facet name="header">
facet within your<p:panel>
:Or, if you want to output some text there, you can use
<p:panel header="#{object.property}" ... >
.