java - Duplicated JSF messages -



java - Duplicated JSF messages -

i'm using jsf richfaces , message shows error in console , generates 2 repeated messages.

i have xhtml:

<h:form> <h:panelgrid columns="3"> <h:outputlabel value="proyecto" /> <h:selectonemenu id="cbo_proyecto" value="#{planmaestro.idproyecto}" required="true" requiredmessage="debe seleccionar united nations proyecto."> <f:selectitem itemvalue="0" itemlabel="seleccione" itemdisabled="true"/> <f:selectitems value="#{planmaestro.listaproyectos}" var="p" itemvalue="#{p.idproyecto}" itemlabel="#{p.nombre}" /> </h:selectonemenu> <h:commandbutton value="seleccionar" action="#{planmaestro.mostrarcampos()}"/> </h:panelgrid> </h:form>

i obtain in console:

18:57:14,217 informaciÓn [javax.enterprise.resource.webcontainer.jsf.renderkit] (http-localhost-127.0.0.1-8080-5) advertencia: facesmessage(s) se han puesto en la cola, pero es posible que no se muestren. sourceid=j_idt42:cbo_proyecto[severity=(error 2), summary=(debe seleccionar united nations proyecto.), detail=(debe seleccionar united nations proyecto.)] 18:57:14,235 informaciÓn [javax.enterprise.resource.webcontainer.jsf.renderkit] (http-localhost-127.0.0.1-8080-5) advertencia: facesmessage(s) se han puesto en la cola, pero es posible que no se muestren. sourceid=j_idt42:cbo_proyecto[severity=(error 2), summary=(debe seleccionar united nations proyecto.), detail=(debe seleccionar united nations proyecto.)]

if utilize h:message or h:messages won't have problem though errors shown in console, i'm using:

<rich:notifymessages staytime="4000" nonblocking="true" showdetail="true" showsummary="false"/>

and shows 2 repeated messages instead of one.

the <rich:notifymessages> tag shows available messages, in case both local , global messages. avoid double message may set globalonly attribute ture.

please note there tag <rich:notifymessage> local messages.

java jsf jsf-2 richfaces

Comments

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -