Boa tarde!
Infelizmente a minha página aparece em branco. No console essa mensagem aparece:
' FASE: RESTORE_VIEW 1 /ring.xhtml FASE: RENDER_RESPONSE 6 '
Boa tarde!
Infelizmente a minha página aparece em branco. No console essa mensagem aparece:
' FASE: RESTORE_VIEW 1 /ring.xhtml FASE: RENDER_RESPONSE 6 '
Oi Jerry,
cade o código da sua página? ;)
abs
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:p="http://primefaces.org/ui"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets">
<ui:composition template="_template.xhtml">
<ui:define name="Conteudo">
<h:form id="ringForm">
<p:ring id="basic" value="#{livroBean.livros}" var="livro">
<p:outputPanel style="text-align:center;" layout="block">
#{livro.titulo}
<br />
<p:commandButton update=":ringForm:livroDetail"
icon="ui-icon-search" title="View"
oncomplete="PF('livroDialog').show();">
<f:setPropertyActionListener value="#{livro}"
target="#{livroBean.livro}" />
</p:commandButton>
</p:outputPanel>
</p:ring>
<p:dialog id="livroDialog" header="Informações do Livro"
widgetVar="livroDialog" modal="true" showEffect="fade"
hideEffect="fade" resizable="false" width="300">
<p:outputPanel id="livroDetail" style="text-align:center"
layout="block">
<p:panelGrid columns="2" rendered="#{not empty livroBean.livro}"
columnClasses="value" style="width:100%;">
<f:facet name="header">
#{livroBean.livro.titulo}
</f:facet>
<h:outputText value="Preço" />
<h:outputText value="#{livroBean.livro.preco}" />
<h:outputText value="ISBN" />
<h:outputText value="#{livroBean.livro.isbn}" />
</p:panelGrid>
</p:outputPanel>
</p:dialog>
</h:form>
</ui:define>
</ui:composition>
</html>
Oi Jerry,
a tag ui:insert
na sua página _template.xhtml
usa o nome Conteudo
(C maiúscula)?
Pergunto pois na página ring.xhtml
tbm está com este nome:
<ui:define name="Conteudo">
abs
Justamente isto!! No console, como identifico esse tipo de situação?
Desde já muito obrigado pela atenção!