1

我已经在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');
}
4

2 回答 2

7

这应该工作

bar.getParent().getNavigationBar().setTitle('Your Title');
于 2012-08-10T04:55:34.020 回答
0

Sencha Touch 将隐藏视图的标题存储在backButtonStack导航栏组件的数组中。您可以像这样在导航视图中更改某个索引处的标题:

navView.getNavigationBar().backButtonStack[index] = newTitle;

我制作了一个 Gist,其中包含一个处理内部结构的功能。

于 2014-01-11T08:13:52.533 回答