0 Replies Latest reply on Jun 12, 2008 4:14 AM by henryxu

    h:selectOneMenu problem in richFace 3.2.1 with IE 6.0

    henryxu

      in IE 6.0,when ajax request later,h:selectOneMenu is disable,can't select.but in IE 7.0 is not problem.

      example:

      <h:outputLabel for="jylx">JYLX:</h:outputLabel>
      <s:decorate>
      <a4j:outputPanel id="getjylx">
      <h:selectOneMenu id="jylx" forceIdIndex="true" value="#{si_zqjyzl.id}" styleClass="textfield">
      <a4j:support event="onchange" action="#{sa_zhinfomanager.setFi_bz}" reRender="getzjzh"/>
      <f:selectItem itemValue="0" itemLabel="SELECT" />
      <f:selectItems id="jylxItems" value="#{sa_zhinfomanager.jyzlname}" />
      </h:selectOneMenu>
      </a4j:outputPanel>
      *
      </s:decorate>
      <h:outputLabel for="zjzh">ZJZH:</h:outputLabel>
      <s:decorate>
      <a4j:outputPanel id="getzjzh">
      <h:selectOneMenu id="zjzh" forceIdIndex="true" value="#{ca_zh.id}" styleClass="textfield">
      <f:selectItem itemValue="0" itemLabel="SELECT" />
      <f:selectItems id="zjzhItems" value="#{sa_zhinfomanager.cazhname}" />
      </h:selectOneMenu>
      </a4j:outputPanel>
      * 
      <a4j:commandLink action="#{ca_zhoperation.addClearCa_zh}" reRender="panal" onclick="#{rich:component('showzjzh')}.show();" value="newZJZH"></a4j:commandLink>
      </s:decorate>
      <h:outputLabel for="khjg">JJQS:</h:outputLabel>
      <s:decorate>
      <h:selectOneMenu id="khjg" forceIdIndex="true" value="#{pi_jg.id}" styleClass="textfield">
      <f:selectItem itemValue="0" itemLabel="SELECT" />
      <f:selectItems id="khjgItems" value="#{sa_zhinfomanager.jgname}"/>
      </h:selectOneMenu>
      *
      </s:decorate>



      when I selected "JYLX","ZJZH" is not disable,but "JJQS" is disable.why?

      regard :)