2 Replies Latest reply on May 13, 2010 4:19 PM by marioosh.net

    Self-updating h:selectOneListbox doesn't work in IE

    marioosh.net

      I have h:selectOneListbox that is updated onclick/onchange elem from list, but it doesn't work in IE - javascript error in a4j javascript.

      It works in Opera, Fireforx and Chrome. What can i do to make it work in IE too ?

       

       

        <a4j:form>
          <a4j:keepAlive beanName="categorySelectorBean"/>                         
          <a4j:region>
            <h:panelGroup id="incc">
              <h:selectOneListbox value="#{categorySelectorBean.id}" >
                <f:selectItems id="availableCategory" value="#{categorySelectorBean.availableCategoriesId}"/>
                <a4j:support event="onclick" reRender="incc"/>
              </h:selectOneListbox>
            </h:panelGroup>
          </a4j:region>
        </a4j:form>
      
      
      

       

      (selectItems availableCategoriesId list is prepared from categorySelectorBean.id)