6

我有一个这样的标签面板:

var tab1 = {
    id: 'section1',
    title: 'First Section',
    padding: 10,
    html: '(this content will be replaced with an ajax load)'
}

var tab2 = {
    id: 'section2',
    title: 'Second Section',
    padding: 10,
    html: '(this content will be replaced with an ajax load)'
}

var tab3 = {
    id: 'section3',
    title: 'Third Section',
    padding: 10,
    html: '(this content will be replaced with an ajax load)'
}

var modules_info_panel = new Ext.TabPanel({
    region: 'center',
    activeTab: 0,
    border: false,
    defaults:{autoScroll:true},
    items:[tab1, tab2, tab3]
});

然后在创建此选项卡面板后,我想动态更改选项卡的内容,但这些都不起作用:

tab1.html = 'new html'; // no effect
tab1.title = 'new title'; // no effect
tab1.update('new text'); // error: tab1.update is not a function
viewport.doLayout(); // no effect

由于我想通过AJAX加载每个选项卡的内容,我不想按照此问题中的建议动态添加选项卡,但希望选项卡从第一次加载时可见,并且每个选项卡的内容在单击时动态更改.

选项卡创建后如何更改其内容?

更新:

感谢@Chau 发现我的疏忽:当我使用Ext.Panel而不是简单的 javascript 对象文字创建选项卡时,它可以工作:

var tab1 = new Ext.Panel ({
    id: 'section1',
    title: 'First Section',
    padding: 10,
    html: '(this content will be replaced with an ajax load)'
});

var tab2 = new Ext.Panel ({
    id: 'section2',
    title: 'Second Section',
    padding: 10,
    html: '(this content will be replaced with an ajax load)'
});

var tab3 = new Ext.Panel ({
    id: 'section3',
    title: 'Third Section',
    padding: 10,
    html: '(this content will be replaced with an ajax load)'
});

var modules_info_panel = new Ext.TabPanel({
    region: 'center',
    activeTab: 0,
    border: false,
    defaults:{autoScroll:true},
    items:[tab1, tab2, tab3]
});

tab1.update('new content with update'); //works
4

2 回答 2

6

当您创建tab1它时,它是一个具有 4 个属性的对象。当您将tab1作为项目添加到选项卡面板时,选项卡面板初始化程序将基于tab1. 然而,您tab1仍然是一个具有 4 个属性的对象,而不是对您的选项卡面板创建的选项卡的引用。

我将panel使用您的 4 个属性创建一个,并将该面板添加为选项卡面板中的子项。

var tab1 = new Ext.Panel({
    id: 'section1',
    title: 'First Section',
    padding: 10,
    html: '(this content will be replaced with an ajax load)'
});

然后选项卡面板应该使用您的面板而不是创建自己的面板。

我还没有测试过这段代码,但我希望它会对你有所帮助:)

于 2010-12-20T10:25:13.313 回答
0

modules_info_panel.get(0)将返回第一个选项卡对象(默认为 Ext.Panel 实例),因此:

 modules_info_panel.get(0).setTitle('new title');

将设置新标题

于 2010-12-20T10:32:56.353 回答