[richfaces-issues] [JBoss JIRA] (RF-11617) rich:pickList 4.1.0.M3 - valueChangeListener not firing correctly

Brendan Healey (Created) (JIRA) jira-events at lists.jboss.org
Mon Oct 31 08:05:45 EDT 2011


rich:pickList 4.1.0.M3 - valueChangeListener not firing correctly
-----------------------------------------------------------------

                 Key: RF-11617
                 URL: https://issues.jboss.org/browse/RF-11617
             Project: RichFaces
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: component-selects
    Affects Versions: 4.1.0.Milestone3
         Environment: Mojarra 2.1.3, glassfish 3.1.1,  Windows 7, IE8 & Chrome browsers
            Reporter: Brendan Healey


I have two List<String>, selectedList & wholeList. Using the add/remove(all) buttons
the value change listener is not executed on the server unless the browser window is
minimised, tested on IE8 & Chrome. This has been tested with the converter= attribute
and a child f:converter tag. The child a4j:ajax tag is required.

<rich:pickList value="#{leagueMgrHomepageView.selectedList}"
               onchange="fred()"
               converter="convertHashMap"
               valueChangeListener="#{leagueMgrHomepageView.testVCL}">
       <a4j:ajax/>
       <f:selectItems value="#{leagueMgrHomepageView.wholeList}"
                      var="var" itemLabel="#{var}" itemValue="#{var}"/>
</rich:pickList>

public void testVCL(ValueChangeEvent event) {
   Log.log("testVCL");
}

Looks like a browser side event problem.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the richfaces-issues mailing list