我想通过单击工具栏中的按钮来显示模式信息窗口。我不知道为什么,但是当我单击按钮时没有任何反应。
这是我的代码:
xtype: 'toolbar',
docked: 'bottom',
items: [
{
xtype: 'button',
text: 'Infos anzeigen',
handler: function(){
var panel = new Ext.Panel({
modal: true,
left: 0,
top: 0,
width: 220,
height: 356,
layout: 'fit',
html: 'Testing'
});
panel.show();
}
}]