senchatouchでアプリケーションを実装しました
パネルにナビゲーションバーがあり、パネルヘッダーに動的にタイトルを設定したい
Ext.define('FleetSyncApp.view.WSMachineTypes', {
extend: 'Ext.Panel',
alias: 'widget.wsmachinetypes',
id: 'myPanel',
config: {
layout: {
type: 'vbox'
},
items: [
{
title: 'Contact information',
xtype: 'list',
----
----
-----
}
],
listeners: [
{
fn: 'initComponent',
event: 'initialize'
}
]
},
そしてinitcomponentメソッドでこのようなコンポーネントを取得するためのコードを実装しました
initComponent: function(component, options, wstitle) {
var bar = Ext.getCmp('myPanel');
}