我正在使用JSF 2.0。我有一个<h:inputText>
valueChangeListener
。它使用blur
事件转到bean,并从Web服务返回数据并再渲染9个字段。
这在Firefox和Chrome上运行良好,但是在IE上,它会找到数据,但它不会渲染其他9个字段。
我到处搜索,reRender与a4j据说可行,但我不能使用RichFaces。
以下是代码的相关部分:
<h:inputText id="nroDocumento" title="Cédula/RIF Solicitante"
label="Cédula/RIF Solicitante"
alt="Cédula/RIF Solicitante" maxlength="8"
binding="#{GeneralBean.bdg_nroDocumento}"
style="width:115px" styleClass="numerico" onkeypress="return soloNumeros(event,this.value,this);"
valueChangeListener="#{GeneralBean.cargarDatosCliente}">
<f:ajax event="blur" render="nombreSol direccion nroTelefono nroFax mail estado ciudad codFax codTelefono"/>
</h:inputText>
这是如何引起的?如何解决?