try and get ctrl-enter to add a clear all
[roojs1] / Roo / bootstrap / Container.js
index 20dae3d..4ce6886 100644 (file)
@@ -9,6 +9,8 @@
 /**
  * @class Roo.bootstrap.Container
  * @extends Roo.bootstrap.Component
+ * @children Roo.bootstrap.Component
+ * @parent builder
  * Bootstrap Container class
  * @cfg {Boolean} jumbotron is it a jumbotron element
  * @cfg {String} html content of element
@@ -369,43 +371,7 @@ Roo.extend(Roo.bootstrap.Container, Roo.bootstrap.Component,  {
         e.preventDefault();
         
         this.fireEvent('click', this, e);
-    },
-    
-    getItems : function()
-    {
-        var r=new Roo.util.MixedCollection(false, function(o){
-            return o.id || (o.id = Roo.id());
-        });
-        var iter = function(el) {
-            if (el.inputEl) {
-                r.add(el);
-            }
-            if (!el.items) {
-                return;
-            }
-            Roo.each(el.items,function(e) {
-                iter(e);
-            });
-        };
-
-        iter(this);
-        return r;
-    },
-    
-    checkEmpty : function()
-    {
-        var items = this.getItems();
-        var isEmpty = true;
-        
-        items.each(function(f){
-            if(f.isVisible()) {
-                isEmpty = false;
-            }
-        });
-        
-        return isEmpty;
     }
-   
 });
 
  
\ No newline at end of file