Put TabPanel to Window to create a dialog (Ext GWT) : Dialog « GWT « Java






Put TabPanel to Window to create a dialog (Ext GWT)

Put TabPanel to Window to create a dialog (Ext GWT)
 
/*
 * Ext GWT - Ext for GWT
 * Copyright(c) 2007-2009, Ext JS, LLC.
 * licensing@extjs.com
 * 
 * http://extjs.com/license
 */

package com.google.gwt.sample.hello.client;

import com.extjs.gxt.ui.client.event.ButtonEvent;
import com.extjs.gxt.ui.client.event.SelectionListener;
import com.extjs.gxt.ui.client.widget.LayoutContainer;
import com.extjs.gxt.ui.client.widget.TabItem;
import com.extjs.gxt.ui.client.widget.TabPanel;
import com.extjs.gxt.ui.client.widget.Window;
import com.extjs.gxt.ui.client.widget.button.Button;
import com.extjs.gxt.ui.client.widget.layout.FitData;
import com.extjs.gxt.ui.client.widget.layout.FitLayout;
import com.extjs.gxt.ui.client.widget.layout.FlowLayout;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.Element;
import com.google.gwt.user.client.ui.RootPanel;

public class Hello implements EntryPoint {
  public void onModuleLoad() {
    RootPanel.get().add(new HelloWindowExample());
  }
}
class HelloWindowExample extends LayoutContainer {

  @Override
  protected void onRender(Element parent, int pos) {
    super.onRender(parent, pos);
    setLayout(new FlowLayout(10));

    final Window window = new Window();
    window.setSize(500, 300);
    window.setPlain(true);
    window.setModal(true);
    window.setBlinkModal(true);
    window.setHeading("Hello Window");
    window.setLayout(new FitLayout());

    TabPanel panel = new TabPanel();
    panel.setBorders(false);
    TabItem item1 = new TabItem("Hello World 1");
    item1.addText("Hello...");
    item1.addStyleName("pad-text");

    TabItem item2 = new TabItem("Hello World 2");
    item2.addText("... World!");
    item2.addStyleName("pad-text");
    panel.add(item1);
    panel.add(item2);

    window.add(panel, new FitData(4));

    window.addButton(new Button("Hello"));
    window.addButton(new Button("World"));

    Button btn = new Button("Hello World", new SelectionListener<ButtonEvent>() {
      @Override
      public void componentSelected(ButtonEvent ce) {
        window.show();
      }
    });
    add(btn);

  }

}

   
  








Ext-GWT.zip( 4,297 k)

Related examples in the same category

1.Create Custom Dialog
2.Add label to a window (Smart GWT)Add label to a window (Smart GWT)
3.Add Footer to a window (Smart GWT)Add Footer to a window (Smart GWT)
4.Adding controls to window header (Smart GWT)Adding controls to window header (Smart GWT)
5.Minimizing a window (Smart GWT)Minimizing a window (Smart GWT)
6.Modal window with controls (Smart GWT)Modal window with controls (Smart GWT)
7.Mormal window vs auto-resizing window (Smart GWT)Mormal window vs auto-resizing window (Smart GWT)
8.Draggable window (Smart GWT)Draggable window (Smart GWT)
9.Put complex control onto a dialog (Smart GWT)Put complex control onto a dialog (Smart GWT)
10.Confirmation dialog (Smart GWT)Confirmation dialog (Smart GWT)
11.Expandable dialog with expandable panel (Smart GWT)Expandable dialog with expandable panel (Smart GWT)
12.A custom form control implemented as a picker (Smart GWT)A custom form control implemented as a picker (Smart GWT)
13.Adding accordion panel to a window (Ext GWT)Adding accordion panel to a window (Ext GWT)
14.Alert MessageBox (Ext GWT)Alert MessageBox (Ext GWT)
15.Confirmation MessageBox (Ext GWT)Confirmation MessageBox (Ext GWT)
16.Prompt MessageBox (Ext GWT)Prompt MessageBox (Ext GWT)
17.Adding callback listener to MessageBox (Ext GWT)Adding callback listener to MessageBox (Ext GWT)
18.Multi-line prompt MessageBox (Ext GWT)Multi-line prompt MessageBox (Ext GWT)
19.Configure the MessageBox (Ext GWT)Configure the MessageBox (Ext GWT)
20.Progress Bar dialog box (Ext GWT)Progress Bar dialog box (Ext GWT)
21.Timer based dialog box (Ext GWT)Timer based dialog box (Ext GWT)
22.Simple dialog with text area and two buttons (Ext GWT)Simple dialog with text area and two buttons (Ext GWT)
23.Dialog with layout (Ext GWT)Dialog with layout (Ext GWT)
24.Create a popup window with Window class (Ext GWT)Create a popup window with Window class (Ext GWT)
25.Login dialog (Ext GWT)Login dialog (Ext GWT)