如何动态更改列表面板标题?我有一个导航视图,其中 listpanel 是项目。所以导航栏显示我会动态改变的面板标题。
图片:
谢谢。
listpanel = new Ext.Panel({
layout: 'fit',
id:'listpanel',
title:'change this title dinamically',
items: [
{
xtype: 'titlebar',
id: 'myTitle',
docked: 'top',
title: 'title1'
},
{ xtype: 'titlebar',
id: 'myMeanConsumption',
docked: 'bottom',
title: 'title2'
},
list
]
});