1 Reply Latest reply on Dec 28, 2006 9:05 PM by norman.richards

    Rich UI Form

      So I have a stateful session bean for my page, and in the page users will enter new objects into a collection. But I want the user to stay on the same page while they enter more "records".

      I can have a @Begin to start, and I have a save and cancel button that goes to @End methods. I could add a "Save - Continue" button that will save but not end the conversation.

      Is this a good design, or does anyone have better ideas for these type of applications, before adding Ajax functionality to it.

      Thanks

        • 1. Re: Rich UI Form

          You could stay in the same conversation, or you could end the conversation and start a new one using @End(beforeRedirect=true) and redirecting to the start page. The later approach seems tidier to me.