Form control Enable/Disable Sample (Smart GWT) : Form « GWT « Java






Form control Enable/Disable Sample (Smart GWT)

Form control Enable/Disable Sample (Smart GWT)
   
/*
 * SmartGWT (GWT for SmartClient)
 * Copyright 2008 and beyond, Isomorphic Software, Inc.
 *
 * SmartGWT is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License version 3
 * as published by the Free Software Foundation.  SmartGWT is also
 * available under typical commercial license terms - see
 * http://smartclient.com/license
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 */
package com.smartgwt.sample.showcase.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
import com.smartgwt.client.util.SC;
import com.smartgwt.client.widgets.Canvas;
import com.smartgwt.client.widgets.form.DynamicForm;
import com.smartgwt.client.widgets.form.fields.ButtonItem;
import com.smartgwt.client.widgets.form.fields.CheckboxItem;
import com.smartgwt.client.widgets.form.fields.TextItem;
import com.smartgwt.client.widgets.form.fields.events.ChangeEvent;
import com.smartgwt.client.widgets.form.fields.events.ChangeHandler;
import com.smartgwt.client.widgets.form.fields.events.ClickEvent;
import com.smartgwt.client.widgets.form.fields.events.ClickHandler;

public class Showcase implements EntryPoint {
  public void onModuleLoad() {
    RootPanel.get().add(getViewPanel());
  }

  public Canvas getViewPanel() {

    final DynamicForm form = new DynamicForm();
    form.setWidth(300);

    TextItem fullName = new TextItem();
    fullName.setName("fullName");
    fullName.setTitle("Full Name");
    fullName.setDefaultValue("Billy Bob");

    final ButtonItem buttonItem = new ButtonItem();
    buttonItem.setName("proceed");
    buttonItem.setTitle("Proceed");
    buttonItem.setDisabled(true);
    buttonItem.addClickHandler(new ClickHandler() {
      public void onClick(ClickEvent event) {
        SC.say("OK");
      }
    });

    CheckboxItem licenseAccept = new CheckboxItem();
    licenseAccept.setName("licenseAccept");
    licenseAccept.setTitle("I accept the agreement");
    licenseAccept.setValue(false);
    licenseAccept.addChangeHandler(new ChangeHandler() {
      public void onChange(ChangeEvent event) {
        buttonItem.setDisabled(!((Boolean) event.getValue()));
      }
    });

    form.setFields(fullName, licenseAccept, buttonItem);

    return form;

  }

}

   
    
    
  








SmartGWT.zip( 9,880 k)

Related examples in the same category

1.Adding border line to a form (Smart GWT)Adding border line to a form (Smart GWT)
2.Forms are split for layout (Smart GWT)Forms are split for layout (Smart GWT)
3.Form validation for splitted form (Smart GWT)
4.Drag resize the form from the right edge (Smart GWT)Drag resize the form from the right edge (Smart GWT)
5.Form data validation (Smart GWT)Form data validation (Smart GWT)
6.Form data binding (Smart GWT)Form data binding (Smart GWT)
7.Form Filling Layout Sample (Smart GWT)Form Filling Layout Sample (Smart GWT)
8.Set form width (Smart GWT)Set form width (Smart GWT)
9.Change title Orientation (Smart GWT)Change title Orientation (Smart GWT)
10.Form controls Show/Hide Sample (Smart GWT)Form controls Show/Hide Sample (Smart GWT)
11.Form Dependent Selects Sample (Smart GWT)Form Dependent Selects Sample (Smart GWT)
12.Add fields to a form with setFields (Smart GWT)Add fields to a form with setFields (Smart GWT)
13.Form Data bound Dependent Selects Sample (Smart GWT)Form Data bound Dependent Selects Sample (Smart GWT)
14.Expand or collapse the text box (Smart GWT)Expand or collapse the text box (Smart GWT)
15.Link the table and form fields (Smart GWT)Link the table and form fields (Smart GWT)
16.Using FormPanel to layout fields (Ext GWT)Using FormPanel to layout fields (Ext GWT)
17.Two-column form (Ext GWT)Two-column form (Ext GWT)
18.Collapsible FieldSet (Ext GWT)Collapsible FieldSet (Ext GWT)
19.CheckBox toggling FieldSet (Ext GWT)CheckBox toggling FieldSet (Ext GWT)
20.Support for standard Panel features such as framing, buttons and toolbars (Ext GWT)Support for standard Panel features such as framing, buttons and toolbars (Ext GWT)
21.ContentPanel with buttons (Ext GWT)ContentPanel with buttons (Ext GWT)
22.Make ContentPanel Collapsible (Ext GWT)Make ContentPanel Collapsible (Ext GWT)
23.Set busy status for Status control (Ext GWT)Set busy status for Status control (Ext GWT)