日期:2014-05-16 浏览次数:20442 次
Ext.MyCmp = function(config){
Ext.apply(this,config);
this.message = 'show message method run';
this.buttons = [
{
xtype:'button',
text:'click',
handler:this.showMessage.createDelegate(this)
}
];
Ext.MyCmp.superclass.constructor.call(this);
}
Ext.extend(Ext.MyCmp,Ext.Window,{
showMessage : function(){
Ext.Msg.alert('提示',this.message);
}
});