Ext js的弹出各种消息代码

如题所述

/**
* 弹出一般消息,有时间限制
*/
xJsonTool.prototype.showMsg = function (msg, time) {
Ext.MessageBox.show({
title: '提示',
msg: msg,
buttons: Ext.MessageBox.OK,
icon: Ext.MessageBox.INFO
});

setTimeout(function(){Ext.MessageBox.hide();},time);

};/**
* 弹出提示消息
*/
xJsonTool.prototype.info = function (msg, vfn) {
Ext.MessageBox.show({
title: '提示',
msg: msg,
fn:vfn,
buttons: Ext.MessageBox.OK,
icon: Ext.MessageBox.INFO
});
};/**
* 弹出警告消息
*/
xJsonTool.prototype.warn = function (msg, vfn) {
Ext.MessageBox.show({
title: '警告',
msg: msg,
fn:vfn,
buttons: Ext.MessageBox.OK,
icon: Ext.MessageBox.WARNING
});};/**
* 弹出错误信息
*/
xJsonTool.prototype.error = function (msg, vfn) {
Ext.MessageBox.show({
title: '错误',
msg: msg,
fn:vfn,
buttons: Ext.MessageBox.OK,
icon: Ext.MessageBox.ERROR
});};/**
* 弹出确认信息
*/
xJsonTool.prototype.confirm = function (msg,vfn) {

Ext.MessageBox.show({
title: '确认消息',
msg: msg,
width:300,
buttons: Ext.MessageBox.OKCANCEL,
fn: function(btn){
if(btn=='ok')
if(vfn)
vfn(btn);
},
icon: Ext.MessageBox.QUESTION
});

};
温馨提示:内容为网友见解,仅供参考
无其他回答

Warning: Invalid argument supplied for foreach() in /www/wwwroot/www.t2y.org3v3b34/skin/templets/default/contents.html on line 47
相似回答