3
 var tabs = Ext.widget('tabpanel', {
        renderTo: 'tabs',
        resizeTabs: true,
        enableTabScroll: true,
        width: 600,
        height: 250,
        defaults: {
            autoScroll: true,
            bodyPadding: 10
        },
        items: [{
            title: 'Tab 1003',
            iconCls: 'tabs',
            //ref:'http://www.yahoo.com',
            //hrefTarget:'_self',
            html: '<div style="width:100%; height:100%; background-color:#cccccc;"><iframe src="http://www.w3schools.com" frameborder=0  style="width:100%; height:100%;"></iframe></div>',
            closable: true,
            focusOnToFront  : true
        }],.........................

当有几个标签时,如何专注于第一个标签?我使用focusOnToFront,但它看起来不起作用。

4

2 回答 2

1

看到你已经在变量中定义了你的 tabpanel tabs,如果你想让你的第一个选项卡可见,最简单的方法是:

tabs.setActiveTab(0);

如文档中所述

于 2013-01-31T19:06:50.577 回答
0

添加activeTab属性:

var tabs = Ext.widget('tabpanel', {  
    activeTab: 0,
    ...
于 2013-11-29T07:10:19.107 回答