Package org.spiffyui.client.widgets.dialog

Examples of org.spiffyui.client.widgets.dialog.ConfirmDialog


    private void addConfirmDialog()
    {
        /*
         * Add the ConfirmDialog which will show up when refresh is clicked
         */
        m_dlg = new ConfirmDialog("WidgetsConfirmDlg", Index.getStrings().sampleConfirm());
        m_dlg.hide();
        m_dlg.addCloseHandler(this);
        m_dlg.setText(Index.getStrings().refreshSure());
        m_dlg.addButton("btn1", Index.getStrings().proceed(), "OK");
        m_dlg.addButton("btn2", Index.getStrings().cancel(), "CANCEL");
View Full Code Here

TOP

Related Classes of org.spiffyui.client.widgets.dialog.ConfirmDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.