-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Templating support for accordion tab #135
Comments
This is available now for 0.9. <p-accordionTab>
<header>
Header Content
</header>
Body Content
</p-accordionTab> |
On http://www.primefaces.org/primeng/#/accordion there is a code sample showing that |
…isually anymore but applying to the data primefaces#135
Hi, Not sure what the resolution was here, but the following code with regards to the header, simple does not work: <p-accordionTab>
<ng-template pTemplate="header">Header Content</ng-template>
<ng-template pTemplate="content">Body Content</ng-template>
</p-accordionTab> This on the other hand, does the job: <p-accordionTab>
<p-header>
</p-header>
</p-accordionTab> |
Thank you, I spend some hours searching how to solve this, but it works :) |
Add support to place custom content at header
The text was updated successfully, but these errors were encountered: