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

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

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -