?? 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 + -