jsf - How to use EL with p:panel header? -


i want put dynamic string inside p:panel header using p:inputtext example value="#{object.property}" possible ?

just use <f:facet name="header"> facet within <p:panel>:

<p:panel>     <f:facet name="header">         <p:inputtext value=#{object.property} />         ...     </f:facet>     ... </p:panel> 

or, if want output text there, can use <p:panel header="#{object.property}" ... >.


Comments

Popular posts from this blog

php - cannot display multiple markers in google maps v3 from traceroute result -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -