Bom dia pessoal,
estou com um problema com o prime 3.0M1 (Sei que é um "alpha"), mas o que ocorre é que ele aparece alguns caracteres esquisitos.
segue imagem:
segue o fonte da pagina (De teste, que gerou isso ae):
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns="http://www.w3.org/1999/xhtml"
template="./../../template/temp.xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.prime.com.tr/ui"
xmlns:f="http://java.sun.com/jsf/core">
<ui:define name="modal">
<h:form id="form_modal">
</h:form>
</ui:define>
<ui:define name="top">
<b><h:outputText value="Gerência de Dados" style="font-family: Tahoma; font-size: 15px; font: bold;" /></b>
</ui:define>
<ui:define name="center">
<h:form prependId="false">
<div align="center">
<p:fieldset legend="Operação" style="width: 50%; background-color:#fafafb">
<br/><b>
<h:outputLabel value="Selecione o componente a ser mostrado e a operação a ser realizada !" style="color: red"/>
</b><br/><br/>
<h:panelGrid columns="5" style="text-align: center" cellspacing="5">
<h:outputLabel value="Display: "/>
<p:selectOneMenu effect="fade" value="#{viewBean.display}" style="width: 120px">
<f:selectItem itemLabel="Banco" itemValue="1"/>
<f:selectItem itemLabel="Contabil" itemValue="2"/>
<f:selectItem itemLabel="Fornecedor" itemValue="3"/>
<f:selectItem itemLabel="Categoria" itemValue="4"/>
<f:selectItem itemLabel="Usuário" itemValue="5"/>
</p:selectOneMenu>
<h:outputText/>
<h:outputLabel value="Operação: "/>
<p:selectOneMenu effect="fade" value="#{viewBean.operacao}" style="width: 120px">
<f:selectItem itemLabel="Alterar" itemValue="1"/>
<f:selectItem itemLabel="Cadastrar" itemValue="2"/>
<p:ajax event="change" async="true" update="form_central" process="@form"/>
</p:selectOneMenu>
</h:panelGrid>
</p:fieldset>
</div>
</h:form>
<h:form id="form_central">
<div align="center">
<p:spacer height="20"/>
<p:outputPanel rendered="#{viewBean.display == 1}">
<!--PAINEL DE CONTROLE-->
<p:panel id="painel_central" widgetVar="panel" header="Display -> #{viewBean.display} / Operação -> #{viewBean.operacao}" closable="true" style="width: 50%">
<h:panelGrid columns="2">
<h:outputLabel value="Cód. Banco"/>
<p:inputText value="#{bancoBean.b.idBanco}" required="true" requiredMessage="Campo [Cód. Banco] é necessário !">
<f:convertNumber pattern="####" minIntegerDigits="4" maxFractionDigits="0"/>
</p:inputText>
<h:outputLabel value="Razão Social: "/>
<p:inputText value="#{bancoBean.b.razao}" required="true" requiredMessage="Campo [Razão Social] é necessário !" style="text-transform: uppercase"/>
</h:panelGrid>
<p:spacer height="15"/>
<h:panelGrid columns="2" id="botoes">
<p:commandButton value="Gravar" image="ui-icon ui-icon-check" type="button" onclick="save.show()" rendered="#{viewBean.operacao == 2}"/>
<p:commandButton value="Alterar" image="ui-icon ui-icon-disk" type="button" onclick="update.show()" rendered="#{viewBean.operacao == 1}"/>
<p:commandButton image="ui-icon ui-icon-search" type="button" onclick="search.show()"/>
</h:panelGrid>
</p:panel>
<!--DIALOGO DE CONFIRMAÇÃO-->
<p:confirmDialog message="Deseja gravar os dados ? Uma vez salvo não poderá ser deletado, apenas alteralo !"
header="Gravar" widgetVar="save" showEffect="fade" hideEffect="drop">
<p:commandButton value="Sim" image="ui-icon ui-icon-check" action="#{bancoBean.save}"
update="form_central:painel_central" async="true" oncomplete="save.hide()"/>
<p:commandButton value="Não" image="ui-icon ui-icon-close" type="button" onclick="save.hide()" />
</p:confirmDialog>
<p:confirmDialog message="Gravar alterações efetuadas ?" header="Alteração"
widgetVar="update" showEffect="fade" hideEffect="drop">
<p:commandButton value="Sim" image="ui-icon ui-icon-check" action="#{bancoBean.update}"
update="form_central:painel_central" async="true" oncomplete="update.hide()"/>
<p:commandButton value="Não" image="ui-icon ui-icon-close" type="button" onclick="update.hide()" />
</p:confirmDialog>
</p:outputPanel>
</div>
</h:form>
</ui:define>
</ui:composition>
se alguem souber algo a respetio agradeço.
p/s já tentei colocar um item vazio e nada da no mesmo