为什么这个例子中没有显示按钮?
var button = Ext.create('Ext.button.Button', {
text: 'My Test Button',
listeners: {
click: function (button, e, options) {
alert(this.text);
}
},
renderTo: Ext.getBody()
});
button.show();
答案 0 :(得分:0)
你把它包装在onReady()函数中吗?
Ext.onReady(function() {
var button = Ext.create('Ext.button.Button', {
text: 'My Test Button',
listeners: {
click: function (button, e, options) {
alert(this.text);
}
},
renderTo: Ext.getBody()
});
button.show();
});