1 2 Previous Next 18 Replies Latest reply on Dec 14, 2006 4:10 PM by lowecg2004 Go to original post
      • 15. Re: si:selectItem error parsing
        krica

        Figures :)

        Thanks for you guidance Pete. There's a lot to learn and your component as well as you responding to this thread helps. Thanks!

        /Kris

        • 16. Re: si:selectItem error parsing
          gavin.king

          It's time to migrate to 1.1, dude!

          • 17. Re: si:selectItem error parsing
            krica

            I just saw that it was released! :) Congratulations!

            • 18. Re: si:selectItem error parsing
              lowecg2004

              Pete,

              Changing to @Out worked - thanks for your assistence! BTW - adding support for @DataModel would be most welcome. Anyway, thanks for contributing the component.


              Kris,

              I know I was using a list rather that using enums, but to get my @Out value working I had to replace my @Factory with @Create, e.g.:


              @Name("orderStorageBean")
              @Stateful
              public class OrderStorageBeanHome implements OrderStorageBean, Serializable {

              @SuppressWarnings("unused") //seam handled outjection
              @Out
              private List hardDisks;


              @Create
              public void fetchHardDisks() {
              hardDisks = new LinkedList();

              // add things to list
              }

              ...
              }

              Regards,

              Chris.

              1 2 Previous Next