/* * GWT-Ext Widget Library * Copyright(c) 2007-2008, GWT-Ext. * licensing@gwt-ext.com * * http://www.gwt-ext.com/license */ import com.google.gwt.core.client.EntryPoint; import com.google.gwt.user.client.ui.Image; import com.google.gwt.user.client.ui.RootPanel; import com.gwtext.client.widgets.PaddedPanel; import com.gwtext.client.widgets.Panel; import com.gwtext.client.widgets.ToolTip; import com.gwtext.client.widgets.form.*; import com.gwtext.client.widgets.layout.ColumnLayoutData; public class MultiFieldFormSample implements EntryPoint { public void onModuleLoad() { Panel panel = new Panel(); panel.setBorder(false); panel.setPaddings(15); final FormPanel formPanel = new FormPanel(); formPanel.setFrame(true); formPanel.setBorder(true); formPanel.setTitle("Multiple Fields on Row"); formPanel.setWidth(550); formPanel.setLabelWidth(100); formPanel.setUrl("save-form.php"); TextField firstName = new TextField("First / Last", "first", 110, "Sanjiv"); TextField lastName = new TextField("Last Name", "last", 110, "Jivan"); lastName.setHideLabel(true); MultiFieldPanel namePanel = new MultiFieldPanel(); namePanel.addToRow(firstName, 220); namePanel.addToRow(lastName, new ColumnLayoutData(1)); formPanel.add(namePanel); TextField company = new TextField("Company", "company", 222); formPanel.add(company); MultiFieldPanel dateTimePanel = new MultiFieldPanel(); dateTimePanel.addToRow(new DateField("Appointment", "appointment", 140), 250); TimeField timeField = new TimeField(); timeField.setHideLabel(true); timeField.setWidth(80); dateTimePanel.addToRow(timeField, new ColumnLayoutData(1)); formPanel.add(dateTimePanel); TextField email = new TextField("Email", "email", 222); email.setVtype(VType.EMAIL); formPanel.add(email); Image image = new Image("images/captcha.jpg"); Panel imagePanel = new Panel(); imagePanel.setBorder(false); imagePanel.add(image); ToolTip imageToolTip = new ToolTip("Tooltip on an Image"); imageToolTip.applyTo(image.getElement()); formPanel.add(new PaddedPanel(imagePanel, 0, 110, 0, 5)); MultiFieldPanel captchaPanel = new MultiFieldPanel(); TextField captchaField = new TextField("Captcha", "captcha", 110); captchaPanel.addToRow(captchaField, 220); ToolTip fieldToolTip = new ToolTip("Tooltip on a Field."); fieldToolTip.applyTo(captchaField); Image info = new Image("images/silk/information.gif"); ToolTip tooltip = new ToolTip(); tooltip.setHtml("A
CAPTCHA
is a challenge-response test to determine whether " + "the user is human."); tooltip.setWidth(150); tooltip.applyTo(info.getElement()); captchaPanel.addToRow(info, new ColumnLayoutData(1)); formPanel.add(captchaPanel); panel.add(formPanel); RootPanel.get().add(panel); } }