X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..6e39d509471fe9b4e2660e0d1631b350d0c66f40:/docs/source/CompositeElementLite-more.html diff --git a/docs/source/CompositeElementLite-more.html b/docs/source/CompositeElementLite-more.html index 9543de9c..8ac013ee 100644 --- a/docs/source/CompositeElementLite-more.html +++ b/docs/source/CompositeElementLite-more.html @@ -1,11 +1,12 @@ + The source code -
/**
+    
/** * @class Ext.CompositeElementLite */ Ext.apply(Ext.CompositeElementLite.prototype, { @@ -23,17 +24,6 @@ Ext.apply(Ext.CompositeElementLite.prototype, { return this; }, -
/** - * Clears this composite and adds the elements returned by the passed selector. - * @param {String/Array} els A string CSS selector, an array of elements or an element - * @return {CompositeElement} this - */ - fill : function(els){ - this.elements = []; - this.add(els); - return this; - }, -
/** * Returns the first Element * @return {Ext.Element} @@ -57,22 +47,6 @@ Ext.apply(Ext.CompositeElementLite.prototype, { */ contains : function(el){ return this.indexOf(el) != -1; - }, - -
/** - * Filters this composite to only elements that match the passed selector. - * @param {String} selector A string CSS selector - * @return {CompositeElement} this - */ - filter : function(selector){ - var els = []; - this.each(function(el){ - if(el.is(selector)){ - els[els.length] = el.dom; - } - }); - this.fill(els); - return this; },
/**