码迷,mamicode.com
首页 > Web开发 > 详细

ExtJS 4 【Ext.Msg.alert】

时间:2016-11-19 13:01:34      阅读:418      评论:0      收藏:0      [点我收藏+]

标签:进度   自定义按钮   lin   back   src   mono   .sh   alt   white   

技术分享

function ShowMsg() {
    Ext.MessageBox.alert("消息", "您好!");
}

 

技术分享

 

var config = {
    title: "消息",
    msg: "您好!"
};
function ShowMsg2() {
    //Ext.MessageBox.alert(config);
    Ext.Msg.alert(config);
}

 

技术分享

点击yes,No

技术分享

技术分享

function Confirm() {
    Ext.MessageBox.confirm("提示", "请选择", function (id) {
        alert(‘id:‘ + id);
    });
}

 

 

技术分享

技术分享

技术分享

 

function Prompt() {
    Ext.MessageBox.prompt(‘提示‘,
        ‘请输入‘,
        function (id, msg) {
            alert(‘id:‘ + id + ‘,msg:‘ + msg);
        });
}

技术分享

function Prompt() {
    Ext.MessageBox.prompt(‘提示‘,
        ‘请输入‘,
        function (id, msg) {
            alert(‘id:‘ + id + ‘,msg:‘ + msg);
        },this,true,‘默认值‘);
}

技术分享

function Wait() {
    Ext.MessageBox.wait(‘请稍等‘, ‘提示‘, { text: ‘进度条上的文字‘ });
    Ext.defer(function () {
        Ext.MessageBox.close();
    }, 3000);
}

 

技术分享

 

function Show() {
    Ext.MessageBox.show({
        title: ‘提示‘,
        msg: ‘消息‘,
        modal: true,
        prompt: true,
        value: ‘请输入‘,
        fn: function (id, msg) {
            alert(‘id:‘ + id + ‘,msg:‘ + msg);
        },
        buttons: Ext.Msg.YESNOCANCEL,
        icon: Ext.Msg.QUESTION
    });
}

 

 

技术分享

function Show2() {
    Ext.MessageBox.buttonText.yes = ‘按钮一‘;
    Ext.MessageBox.buttonText.no = ‘按钮二‘;
    Ext.MessageBox.buttonText.cancel = ‘按钮三‘;
    Ext.MessageBox.show({
        title: ‘提示‘,
        msg: ‘自定义按钮文字‘,
        modal: true,
        buttons: Ext.Msg.YESNOCANCEL
    });
}

 

 

 

技术分享

 

function Show3() {
    var task = {
        run: function () {
            msgBox.updateText(‘Time‘ + Ext.util.Format.date(new Date(),‘Y-m-d g:i:s A‘));
        },
        interval: 1000
    };
    var msgBox = Ext.MessageBox.show({
        title: ‘提示‘,
        msg: ‘自定义按钮文字‘,
        modal: true,
        buttons: Ext.Msg.OK,
        fn: function () {
            Ext.TaskManager.stop(task);
        }
    });
   
    Ext.TaskManager.start(task);
}

ExtJS 4 【Ext.Msg.alert】

标签:进度   自定义按钮   lin   back   src   mono   .sh   alt   white   

原文地址:http://www.cnblogs.com/CodingArt/p/6080136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!