List of usage examples for com.google.gwt.user.client.ui FormPanel subclass-usage
From source file org.opencms.ugc.client.CmsUgcWrapper.java
/** * Widget used to wrap and manage the state of forms for which the form editing API is used.<p> */ public class CmsUgcWrapper extends FormPanel { /** The client form session. */
From source file org.overlord.commons.gwt.client.local.widgets.TemplatedFormPanel.java
/**
* Extends the {@link FormPanel} and implements {@link HasText} as a marker interface
* so that this class can be {@link Inject}'d into an Errai UI template properly.
*
* @author eric.wittmann@redhat.com
*/
From source file org.overlord.sramp.ui.client.local.widgets.common.TemplatedFormPanel.java
/**
* Extends the {@link FormPanel} and implements {@link HasText} as a marker interface
* so that this class can be {@link Inject}'d into an Errai UI template properly.
*
* @author eric.wittmann@redhat.com
*/
From source file org.overlord.sramp.ui.client.widgets.ArtifactUploadForm.java
/** * A widget that is used to upload an artifact to the server. * * @author eric.wittmann@redhat.com */ public class ArtifactUploadForm extends FormPanel {
From source file org.ow2.proactive_grid_cloud_portal.rm.client.nodesource.serialization.ImportFromFilePanel.java
public class ImportFromFilePanel extends FormPanel { static final String FILE_OPTION_NAME = "Import from File"; ImportFromFilePanel(ImportNodeSourceLayout importNodeSourceLayout) { setEncoding(FormPanel.ENCODING_MULTIPART);
From source file org.ow2.proactive_grid_cloud_portal.rm.client.nodesource.serialization.load.file.ImportFromFilePanel.java
public class ImportFromFilePanel extends FormPanel { public static final String FILE_OPTION_NAME = "Import from File"; public ImportFromFilePanel(SubmitCompleteHandler handler) { setEncoding(FormPanel.ENCODING_MULTIPART);
From source file org.ow2.proactive_grid_cloud_portal.rm.client.nodesource.serialization.NodeSourceSerializationFormPanel.java
public class NodeSourceSerializationFormPanel extends FormPanel { public NodeSourceSerializationFormPanel(String servletName) { setEncoding(FormPanel.ENCODING_MULTIPART); setMethod(FormPanel.METHOD_POST); setAction(GWT.getModuleBaseURL() + servletName);
From source file org.teiid.authoring.client.widgets.TemplatedFormPanel.java
/**
* Extends the {@link FormPanel} and implements {@link HasText} as a marker interface
* so that this class can be {@link Inject}'d into an Errai UI template properly.
*
* @author eric.wittmann@redhat.com
*/
From source file org.unitime.timetable.gwt.client.widgets.UniTimeFileUpload.java
/** * @author Tomas Muller */ public class UniTimeFileUpload extends FormPanel { private static final GwtRpcServiceAsync RPC = GWT.create(GwtRpcService.class); private FileUpload iUpload;