All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sksamuel.jqm4gwt.JQMDialog Maven / Gradle / Ivy

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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy