I'm using IntroJs framework (https://introjs.com/) and my problem is to do a tour (intro) on a tabView (primefaces component).
When I put the inline atribute data-intro
in a p:tab
component, the primefaces ignores them and the html component it generates cannot be seen by the introJs start() function.
Here is my code:
<p:tabView id="tabView" scrollable="true" styleClass="users">
<p:tab title="ldap" id="tabLDAP" data-intro="test">
<ui:include src="tabldap.xhtml" />
</p:tab>