我只是想显示一个 MessageBox。但我收到一个错误:TypeError: Ext.Msg is not a function
我在控制器中的代码:
..... Ext.MessageBox.show({
title:'Delete',
msg: 'Delete user <b>'+r.extraParams.username+'</b>',
buttons: Ext.MessageBox.YESNO,
fn: function(buttonId) {
var userId=r.extraParams.userId;
console.log(buttonId);
if (buttonId === "yes") {
Ext.Msg('OK', 'User deleted', 'success');
}
},
icon: Ext.MessageBox.QUESTION,
});....
它应该看起来像这里,点击一个按钮后: http: //dev.sencha.com/deploy/ext-4.0.0/examples/message-box/msg-box.html 然后顶部的一个消息框你的浏览器出现了!怎么了?有任何想法吗?谢谢!