1 Reply Latest reply on May 25, 2006 4:54 PM by gavin.king

    conversationStack / conversationList

    rdewell

      I've been using @Begin and @End for a while now, in what I consider very basic ways. All works relatively well. In an effort to get a deeper understanding of conversations and perhaps use them in a more advanced way, I tried to see what was going on under the covers:

      #{conversation.id}
      
      <ul>
      <ui:repeat value="#{conversationStack}" var="entry">
       <li>#{entry.description}</li>
      </ui:repeat>
      <ui:repeat value="#{conversationList}" var="entry">
       <li>#{entry.description}</li>
      </ui:repeat>
      </ul>
      


      Although on each GET converation.id increments and displays (I know I can change this by propogating it eventually), and on each POST conversation.id displays the same, I would expect it to list out entries in the conversationStack/conversationList. However, no li's are ever listed for either.

      What's the precondition that I might be missing for seeing conversations inside conversationStack/conversationList? I thought a @Begin would be sufficient?

      Thanks,

      Ryan