Steps: - Create a Composite widget called Wizard - This widget will have a DeckPanel and back/next buttons in a main VerticalPanel. - Add your screens(different widgets) into the base DeckPanel. - If you have lot of data that is shared across the screens, wrap it up in a value object. - Share this value object across screens. - Each screen is a composite widget that is aware of how to render itself with the passed data.
you can make the wizard generic by accepting list of screen widgets (Widget[]) and adding them all to the deckpanel; on back/next move the visible deck as required. It is very simple! Little playing around with gwt and you will do it. good luck... Rakesh Wagh On Sep 15, 9:31 pm, Karan Sardana <[email protected]> wrote: > Scenario is - The user needs to enter and submit a lot of > information, & the mechanism to collect such information is often > organized into many screens with next/previous/finish buttons. > > Is there any way in which I can create this with GWT? > > Thanks, > Karan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
