Package com.googlecode.mgwt.ui.client.widget.form

Examples of com.googlecode.mgwt.ui.client.widget.form.Form


public class FormsViewGwtImpl extends DetailViewGwtImpl implements FormsView {
  public FormsViewGwtImpl() {

    FlowPanel container = new FlowPanel();

    Form widgetList = new Form();
    widgetList.setHeader(new Label("Contact Data"));

    // lets put in some widgets
    widgetList.add(new FormEntry("Firstname", new MTextBox()));
    widgetList.add(new FormEntry("Lastname", new MTextBox()));
    widgetList.add(new FormEntry("Job Title", new MTextBox()));

    container.add(widgetList);

    scrollPanel.setScrollingEnabledX(false);
    scrollPanel.setWidget(container);
View Full Code Here

TOP

Related Classes of com.googlecode.mgwt.ui.client.widget.form.Form

Copyright © 2018 www.massapicom. All rights reserved.
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.