ExtJS按钮未显示

时间:2014-07-15 19:30:28

标签: extjs

为什么这个例子中没有显示按钮?

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();

1 个答案:

答案 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();

});