Container.js


//Note: not currently implemented.

Ext.Container = function(config){
    Ext.Container.superclass.constructor.call(this, config);
    this.items = new Ext.util.MixedCollection(false, this.getComponentId);
};

Ext.extend(Ext.Container, Ext.Component, {
    getComponentId : function(comp){
        return comp.id;
    },

    add : Ext.emptyFn,

    remove : Ext.emptyFn,

    insert : Ext.emptyFn
});

Ext - Copyright © 2006-2007 Ext JS, LLC
All rights reserved.