Six conversations

I am trying to create a form with three drop-down lists and a text area. I use conversation as a scope. I end the conversation when the user clicks the submit button. The problem I am facing is the buttons problem. When you press the back button, the previous data is stored. If I try to select from the drop-down list, I get a message that the conversation is over. Is there a way that I can just reload the page from scratch? So, can users submit a new request?

+3
source share
1 answer

You need to create where to redirect the conversation in the configuration file pages.xml

<pages>
  <page view-id="/youfile.xhtml" no-conversation-view-id="/scratch_form.xhtml"">
  </page>
</pages>
+1
source

Source: https://habr.com/ru/post/1756444/


All Articles