Change title Orientation (Smart GWT) : Form « GWT « Java






Change title Orientation (Smart GWT)

Change title Orientation (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.types.TitleOrientation;
import com.smartgwt.client.widgets.Canvas;
import com.smartgwt.client.widgets.IButton;
import com.smartgwt.client.widgets.events.ClickEvent;
import com.smartgwt.client.widgets.events.ClickHandler;
import com.smartgwt.client.widgets.form.DynamicForm;
import com.smartgwt.client.widgets.form.fields.FormItem;
import com.smartgwt.client.widgets.form.fields.TextItem;
import com.smartgwt.client.widgets.layout.HLayout;

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

  TitleOrientation titleOrientation = TitleOrientation.LEFT;

  public Canvas getViewPanel() {
    HLayout layout = new HLayout();

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

    TextItem usernameItem = new TextItem();
    usernameItem.setTitle("Username");
    usernameItem.setRequired(true);
    usernameItem.setDefaultValue("bob");

    TextItem emailItem = new TextItem();
    emailItem.setTitle("Email");
    emailItem.setRequired(true);
    emailItem.setDefaultValue("bob@isomorphic.com");

    TextItem passwordItem = new TextItem();
    passwordItem.setTitle("Password");
    passwordItem.setRequired(true);
    passwordItem.setType("password");

    TextItem password2Item = new TextItem();
    password2Item.setTitle("Password again");
    password2Item.setRequired(true);
    password2Item.setType("password");

    form.setFields(new FormItem[] { usernameItem, emailItem, passwordItem, password2Item });

    IButton swapButton = new IButton("Swap titles");
    swapButton.setLeft(300);
    swapButton.addClickHandler(new ClickHandler() {
      public void onClick(ClickEvent event) {
        if (form.getTitleOrientation() == TitleOrientation.TOP) {
          titleOrientation = TitleOrientation.LEFT;
        } else {
          titleOrientation = TitleOrientation.TOP;
        }
        form.setTitleOrientation(titleOrientation);
      }
    });

    layout.addMember(form);
    layout.addMember(swapButton);

    return layout;
  }

}

   
    
    
  








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.Form controls Show/Hide Sample (Smart GWT)Form controls Show/Hide Sample (Smart GWT)
10.Form control Enable/Disable Sample (Smart GWT)Form control Enable/Disable 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)