ExtJS 初始化组件后执行代码
将组件初始化完成后执行的代码可以放置在initComponent模板方法中,代码如下:
Ext.define('PandaTestComponent',{
extend: 'Ext.panel.Panel',
//初始化组件后执行的代码
initComponent: function (){
console.log('initComponent called');
this.callParent(arguments);
}
});
Ext.create('PandaTestComponent',{
renderTo: Ext.getBody(),
title: 'PandaTest',
})
本文来自博客园,作者:重庆熊猫,转载请注明原文链接:https://www.cnblogs.com/cqpanda/p/16994606.html