これは、「マイウィンドウ」というタイトルのシンプルなパネルです。
Ext.define('MyApp.MyWindow', {
extend : 'Ext.panel.Panel',
title : 'My Window',
html : '<p>This is a test</p>',
renderTo : Ext.getBody()
});
タイトルをconfigブロックに入れると、タイトルが表示されません。なぜなのかご存知ですか?
Ext.define('MyApp.MyWindow', {
extend : 'Ext.panel.Panel',
config : {
title : 'My Window',
html : '<p>This is a test</p>'
},
renderTo : Ext.getBody()
});