Pessoal,
no código abaixo,
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3c.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.prime.com.tr/ui">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<h:body>
<h:form>
<p:accordionPanel activeIndex="0" collapsible="true">
<p:tab title="First Tab Title">
<h:outputText value="First tab" />
</p:tab>
<p:tab title="Second Tab Title" activeIndex="1" collapsible="true">
<h:outputText value="Second Tab" />
</p:tab>
<p:tab title="Third Tab Title" activeIndex="2" collapsible="true">
<h:outputText value="Third Tab" />
</p:tab>
</p:accordionPanel>
</h:form>
</h:body>
</html>
o componente accordingPanel não está sendo renderizado, o que deveria ser a aba está sendo impresso como texto simples, tipo: ABA1 ABA 2 ABA 3…
Alguém pode ajudar?
Grato.