2 Replies Latest reply on Jun 6, 2008 9:10 AM by ilya_shaikovsky

    rich:pickList values are not displayed

    u268

      Hi All!

      I'm trying to use rich:pickList:

      <rich:pickList id="agents" value="#{brokerageEditorController.agents}" converter="#{userConverter}">
       <f:selectItems value="#{brokerageEditorController.freeAgents}"/>
      </rich:pickList>
      


      there are in backing bean getter/setter for property 'agents'
      I'm able to add values to collection. But once it's persisted I can't see values in right panel of pickList.

      Really odd thing.

      Could any one help to figure it out?

        • 1. Re: rich:pickList values are not displayed
          funcruiser7

          Hi u268,

          I'm totally on Your side! I have exactly the same problem and have no clue what to do to get the (already selected) values displayed :-((((

          Can any advanced RF-developer help us, please?

          cheers, Peter

          • 2. Re: rich:pickList values are not displayed
            ilya_shaikovsky

            Guys I think you've already looked at pickList demo on our demosite? :) So I've added only two lines to get this result..

            in the pickListBean:

             public PickListBean() {
             result.add("Montgomery");
             result.add("Juneau");
             }
            


            And two items was already in right list after rendering.

            Also I could add one more time that pickList is just rich UI component that fully the same for selectManyMenu. So if you can do this with basic component - you also could do this for pickList ;)

            Hope this helps.