0 Replies Latest reply on Feb 19, 2007 11:36 PM by vk101

    End conversation after back button

      I have a page that displays a list of entities. I click on one list element (an s:link with a page parameter), taking me to a page that uses the page parameter to display certain things about that entity.

      I hit the back button, taking me to that initial list. I click another entity. However, even though the request parameter has changed, the page still has information about the same entity as the first time.

      Because they're all conversation scoped elements, I'm using the following on the page with the list of elements to show the page in a new conversation:

      <h:outputLink value="nextPage.seam">
      #{listElement.name}
      <f:param name="id" value="#{listElement.id}" />
      <s:conversationPropagation propagation="none" />
      </h:outputLink>

      This doesn't seem to solve the problem. Is there something I'm not considering about the use of the back button and conversation propagation?