这些组件是 Ext 1.1 的一部分。当前的标准是 Ext 2.2,3.0 可能会在 6 月发布。API 在 1.x 和 2.x 之间发生了显着变化(升级到 3 非常向后兼容 2.x)。您可以在以下位置查看 2.x 的示例和演示页面:
http://extjs.com/deploy/dev/examples/samples.html
和 API 文档:
http://extjs.com/deploy/dev/docs/
此外,如果您访问下载页面,您会发现 Ext 3.0 RC 下载以及 2.2 下载(据我所知,1.1 不再可供下载)。
要在 2.x/3.x 中获得 BorderLayout,您将拥有如下内容:
var myModalWindow = new Ext.Window({
    applyTo:'name1',
    layout: 'border',
    items:[{
        region:'north',
        html:'<h1>This is a header of some kind</h1>'
    },{
        region:'west',
        xtype:'tree',
        // The rest of my TreePanel config
    },{
        region:'center',
        xtype:'tabpanel',
        activeTab:0,
        items:[{
            xtype:'grid',
            // the rest of my GridPanel config
        },{
            xtype:'form',
            // the rest of my FormPanel config
        }]
    }]
});
myModalWindow.show();