📄 extinfomsgbox.js
字号:
// 显示提示对话框 OK Button
function showInfoMessageBox_1(strTitle, strMsg, fun) {
Ext.Msg.show( {
title : strTitle,
msg : strMsg,
buttons : Ext.Msg.OK,
minWidth : 200,
fn : fun,
icon : Ext.MessageBox.INFO
});
}
// 显示提示对话框 OK Button
function showInfoMessageBox_2(strTitle, strMsg) {
Ext.Msg.show( {
title : strTitle,
msg : strMsg,
buttons : Ext.Msg.OK,
minWidth : 200,
icon : Ext.MessageBox.INFO
});
}
// 显示提示对话框 OKCANCEL Button
function showInfoMessageBox_3(strTitle, strMsg, fun){
Ext.Msg.show( {
title : strTitle,
msg : strMsg,
buttons : Ext.Msg.OKCANCEL,
minWidth : 200,
fn : fun,
icon : Ext.MessageBox.QUESTION
});
}
function inputInfoBox(strTitle, strMsg, fn) {
Ext.Msg.prompt(strTitle, strMsg, fn);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -