com.sksamuel.jqm4gwt.html.FormFlowPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jqm4gwt-standalone Show documentation
Show all versions of jqm4gwt-standalone Show documentation
jqm4gwt bundled with all of its dependencies
The newest version!
package com.sksamuel.jqm4gwt.html;
import com.google.gwt.dom.client.Document;
/** The same as FlowPanel, but based on <form> element. */
public class FormFlowPanel extends CustomFlowPanel {
public FormFlowPanel() {
super(Document.get().createFormElement());
}
}