p an array of WizardCards List cards = new List(); // 1st card - a welcome WizardCard wc = new WizardCard("Welcome"); wc.setHtmlText( "Welcome to the example for ext.ux.WizardWindow, " + "a ExtGWT user extension for creating wizards.
" + "Please click the \"next\"-button and fill out all form values."); cards.add(wc); // 2nd or more cards... // wc = new WizardCard("More cards..."); // cards.add(wc); // ... WizardWindow wizwin = new WizardWindow(cards); wizwin.setHeading("A simple example for a wizard"); wizwin.setHeaderTitle("Simple Wizard Example"); wizwin.show();
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.