Ext的define方法参数类型define( String className, Object data, Function createdFn )
创建自定义类时,先构造(constructor)后初始化(initComponent)。如:
      Ext.define('Btn',{
          extend:'Ext.button.Button',
          initComponent:function(){
  
         this.callParent(); //一定要有这句
alert('后初始化部件启动...'); }, constructor:function(){ this.text = new Date(); this.renderTo = Ext.getBody(); this.callParent(); alert('先构造函数启动...'); } }); Ext.onReady(function(){ Ext.create('Btn'); });

相关文章:

  • 2022-12-23
  • 2021-12-16
  • 2021-09-16
  • 2022-12-23
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2021-09-26
猜你喜欢
  • 2022-12-23
  • 2021-06-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-31
相关资源
相似解决方案