2 Replies Latest reply on Nov 12, 2009 2:59 AM by hubaer

    a4j:support on internet explorer

      Hi all,

      I have a problem with the a4j:support inside a Trinidad component on Internet Explorer.

      We have a selectOneRadio in our application, and want to show/hide additional information depending from the selection.

      So we defined following jsf code:

      <tr:selectOneRadio id="type"
       value="#{signUpForm.type}"
       simple="true"
       required="true"
       valuePassThru="true"
       converter="#{typeConverter}"
       styleClass="verticalControls">
       <f:selectItems value="#{typeConverter.selectionList}" />
       <a4j:support event="onchange"
       reRender="typeInformationPanel"
       ajaxSingle="true" />
      </tr:selectOneRadio>
      


      So now we we select a type from the Internet Explorer, the first click is ignored (=no onchange is executed). The second click passing the value of the first click to the backing bean. And so far.

      On Firefox all works as expected.

      I found out that if I change the event from "onchange" to "onclick" it works as expected.

      Our environment: Richfaces 3.3.2.SR1, Seam 2.2.0.GA, Trinidad 1.2.12.

      Is there an error in the "onchange" handling? Does someone have a simular problem?

      Any help or suggestions are welcome.

      Marco