1

我是新手。我正在研究 EXTJS 4,需要您的帮助来解决这个问题。

我遇到错误

“TypeError: item is null item.on(ename, fn, scope, options); ext-all-debug.js (line 13795)”

单击链接时,调用函数 doThis() 并且与函数关联的选项卡面板消失。以下是供您参考的功能。

function doThis()
{
    var xxtabPanel = Ext.create('Ext.tab.Panel', {
        renderTo : Ext.fly('content').update(""),
        autoHeight:true,
        id:'xxtabPanel',
        tabHeight:200,
        activeTab:0,
        items : [ {
            id:'tab1',
            itemId:'Tab1',
            frame:true,
            title : 'Tab one Details',
            items :item1    //FormPanel
        }, {
            id:'tab2',
            frame:true,
            itemId:'Tab2',
            title : 'Tab two Details',
            items:item2   //FormPanel
        }, {
            id:'tab3',
            frame:true,
            itemId:'Tab3',
            title : 'Tab three Details',
            items :item3   //FormPanel
        } ],
        listeners: {
            'tabchange': function(tp, p) {

                tp.doLayout();
            }
        }

    });} 

在此先感谢..期待收到您的来信。

4

0 回答 0