如何刷新ExtJS4中的选项卡面板?

时间:2014-06-30 13:45:10

标签: extjs4

我有一个标签面板:

{
        xtype : "tabpanel",//
        region : "center",
        title : "name",
        id:"mytabpanel", 
        items : [ {
            title : "tab1"
        },{
            autoLoad: {url: 'test.jsp', scope: this},
            title: 'tab2',
            closable:false,
            autoScroll:true
            } ]
    }

不知道如何根据某些参数刷新tab2。

感谢。

1 个答案:

答案 0 :(得分:1)

自4.1.1以来,

AutoLoad已弃用。请改用loader config

来(重新)加载你的组件。请参阅ComponentLoader示例