-1

私はクーライトタブパネルで作業しています。クライアント側からタブ変更イベントを処理したい。

4

1 に答える 1

0
listeners: {
        'tabchange': function(tabPanel, tab){
            // Ignore tab1 since it is a separate tab panel and we're managing history for it also.
            // We'll use its handler instead in that case so we don't get duplicate nav events for sub tabs.
            if(tab.id != 'tab1'){
                Ext.History.add(tabPanel.id + tokenDelimiter + tab.id);
            }
        }
    }
于 2011-02-24T09:42:02.867 に答える