seguinte tenho uma pagina jsf com alguns campos e algumas conteudo incluido com a tag <c:import> mas qdo coloco este conteudo num tabPanel do richfaces os botoes naum funcionam nem a pau o que pode ser isso?
Assim funciona:
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://richfaces.org/rich" prefix="rich" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%@ taglib uri="http://richfaces.org/a4j" prefix="a4j" %>
<html>
<head>
<title></title>
</head>
<body>
<f:view>
<f:loadBundle basename="com.NASeguranca.Model.messages" var="msg"/>
<center>
<f:subview id="header">
<c:import url="/view/topo.jsp"></c:import>
</f:subview>
<rich:separator align="center" width="800">
</rich:separator>
<f:subview id="content">
<h:panelGrid columns="2" width="548">
<rich:column>
<c:import url="/view/leftBar.jsp"></c:import>
</rich:column>
<rich:column>
<c:import url="/view/Categoria/categoria.jsp"></c:import>
</rich:column>
</h:panelGrid>
</f:subview>
<rich:separator align="center" width="800">
</rich:separator>
<c:import url="/view/Statusbar.jsp"></c:import>
</center>
</f:view>
</body>
</html>
Mas qdo coloco um tabpanel dentro da view nao funfa valew abracos.