com.sksamuel.jqm4gwt.JQMDialog 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;
import com.google.gwt.uibinder.client.UiConstructor;
import com.google.gwt.user.client.ui.Widget;
/**
* See Dialogs
*
*
Also see
* jQuery Mobile: Dialogs and Popups
*
* @author SlavaP
*
*/
public class JQMDialog extends JQMPage {
public JQMDialog() {
super();
JQMCommon.setDataDialog(this, true);
}
/**
* Creates a {@link JQMDialog} with the given id
*
* @param containerId the id to use as this dialog's id
*/
public @UiConstructor JQMDialog(String containerId) {
super(containerId);
JQMCommon.setDataDialog(this, true);
}
/**
* Create a new {@link JQMDialog} with an automatically assigned dialog id,
* and then add the given widgets serially to the dialog layout.
*/
public JQMDialog(Widget... widgets) {
super(widgets);
JQMCommon.setDataDialog(this, true);
}
}