3 Replies Latest reply on Nov 9, 2015 6:11 AM by vpenugo

    rich:picklist target property getter is not invoking

    vpenugo

      Hi,

       

      I am facing very strange behavior with rich:picklist component. The getter method of Value attribute property is not invoking. because of this, all the target values are setting to Source box.

      Could any one please help me why getter method of Value attribute property is not invoking.

       

      <rich:pickList id="listShuttleID"

           binding="#{backingBean.listShuttle}"

           var="item" listWidth="440px" listHeight="145px"

           value="#{backingBean.managedOrgs}"

           sourceCaption="Source List"

           targetCaption="Target List">

           <f:selectItems value="#{backingBean.availableOrgs}" />

      </rich:pickList>

       

      In the above code when I open the page getAvailableOrgs() is invoking but not invoking getManagedOrgs(). I am setting all the values to 'managedOrgs' property and 'availableOrgs' property.