EXTJS6.2 使用彈出確認框視窗Ext.Msg.show
阿新 • • 發佈:2019-01-05
使用方式
Ext.Msg.show({
title:'刪除',
message: '您確定要刪除本行資料麼?',
buttons: Ext.Msg.OKCANCEL,
buttonText: {ok:'確認',cancel:'取消'},
fn: function(btn) {
if (btn === 'ok') {
console.log('確認刪除');
} else {
console.log('取消刪除');
}
}
});
彈出視窗按鈕(buttons)方式種類包括
Ext.Msg.OK,
Ext.Msg.OKCANCEL,
Ext.Msg.CAMCEL,
Ext.Msg.YESNO,
Ext.Msg.YESNOCANCEL
彈出視窗按鈕(buttonText )的提示文字提示
Defaults to:
{
ok: 'OK',
yes: 'Yes',
no: 'No',
cancel: 'Cancel'
}