Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

accordionPanel - multiline header in tab

I would like to make accordion component with tab that has multiline headers.

Is it possible to make tab header multiline in accordion component?

I am using newest Primefaces 4.0-rc1.

Thank you

like image 754
igor Avatar asked Dec 29 '25 07:12

igor


1 Answers

Yes, you can define title section of <p:tab> by nesting <f:facet name="title">, where you can put your components. The example:

<p:tab>
    <f:facet name="title">
        <div>First line</div>
        <br/>
        <div>Second line</div>
    </f:facet>
    ...
<p:tab>
like image 148
skuntsel Avatar answered Dec 31 '25 00:12

skuntsel