Subversion Repository Public Repository

litesoft

Diff Revisions 897 vs 898 for /trunk/GWT_Sandbox/UIdesign/src/com/test/uidesign/client/PersonalInfoForm.java

Diff revisions: vs.
  @@ -62,8 +62,6 @@
62 62 // FormSuggestBox zSuggest = new FormSuggestBox( "Suggestions", null, "Type to filter content", null, null, createSuggestions() );
63 63 // zSuggest.addFormComponentListener( new MyListener( "ERROR" ) );
64 64 //
65 - // String[] zRadioGroupOptions = new String[]{"Option One", "Option Two is a really long, long option", "Option Three",};
66 - //
67 65 // FormTextField zTFfc = new FormTextField( "First Name", null, "My New Tooltip", null, null );
68 66 // zTFfc.addFormComponentListener( new MyListener( "ERROR" ) );
69 67 //
  @@ -80,15 +78,17 @@
80 78 // zHPanel.add( zPFfc );
81 79 // zHPanel.add( new Spacer( 10 ) );
82 80 // zHPanel.add( zTFnumeric );
83 - //
84 - // FormRadioGroup zRGfc = new FormRadioGroup( "Group Uno", null, "Radio Tooltip", zRadioGroupOptions );
85 - // zRGfc.addFormComponentListener( new MyListener( "N/A" ) );
86 - // add( zRGfc );
87 - //
88 - // FormCheckBox zCheck = new FormCheckBox( "Option1", null, "Options Tooltip", false );
89 - // zCheck.addFormComponentListener( new MyListener( null ) );
90 - // add( zCheck );
91 - //
81 +
82 + String[] zRadioGroupOptions = new String[]{"Option One", "Option Two is a really long, long option", "Option Three",};
83 +
84 + FormRadioGroup zRGfc = new FormRadioGroup( "Group Uno", null, "Radio Tooltip", zRadioGroupOptions );
85 + zRGfc.addFormComponentListener( new MyListener( "N/A" ) );
86 + add( zRGfc );
87 +
88 + FormCheckBox zCheck = new FormCheckBox( "Option1", null, "Options Tooltip", false );
89 + zCheck.addFormComponentListener( new MyListener( null ) );
90 + add( zCheck );
91 +
92 92 // SizeableBorderedHorizontalSplitPairPanel zHSP2 = new SizeableBorderedHorizontalSplitPairPanel().stretchable();
93 93 // zHSP2.add( createCurrentTasks() );
94 94 // zHSP2.add( createTree() );