Estou mexendo com dataTable do primefaces, as informações são mostradas porem a aparência da tabela não é mostrada.
Alguém poderia me ajudar?
o código da minha tela: (estou fazendo para primefaces mobile mais não sei se tem diferença nisso)
<f:view xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui"
xmlns:pm="http://primefaces.org/mobile"
contentType="text/html"
renderKitId="PRIMEFACES_MOBILE">
<pm:page title="Sistema Integrado">
<style>
.th-groups th {
text-align: center;
background-color: rgba(0,0,0,.1);
border-right: 1px solid #fff;
}
.ui-li-custom .ui-li-count {
right: 10px !important;
}
</style>
<!-- Groups -->
<pm:view id="groups" swatch="c">
<pm:header title="Manutenção" />
<pm:content>
<h:form prependId="false">
<p:dataTable value="#{gerenciarOcorrenciaBean.ocorrenciasLazy}" var="ocorrencia" rows="17" lazy="true" emptyMessage="nenhuma ocorrencia encontrada">
<f:attribute name="columnToggle" value="true" />
<f:attribute name="btnText" value="Colunas..." />
<p:column headerText="Codigo">
<h:outputText value="#{ocorrencia.id}" />
</p:column>
<p:column headerText="status" style="#{ocorrencia.urgenteAlto or ocorrencia.urgenteBaixo or ocorrencia.urgenteMedio == true? 'color: red' : ''}">
<h:outputText value="#{ocorrencia.statusOcorrencia == 1? 'Aberta':''
or ocorrencia.statusOcorrencia == 2? 'Em andamento':''
or ocorrencia.statusOcorrencia == 3? 'Fechada':''
or ocorrencia.statusOcorrencia == 4? 'Cancelada':''}" style="#{ocorrencia.usuarioCancela != null ? 'color: grey':''}"/>
</p:column>
</p:dataTable>
</h:form>
</pm:content>
</pm:view>
</pm:page>
</f:view>