我已经在sencha touch中实现了我的应用程序
在我的面板中,我有一个导航栏,我想在面板标题上动态设置标题
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');
}