X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6a7e4474cba9d8be4b2ec445e10f1691f7277c50..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/docs/output/Ext.CompositeElement.html diff --git a/docs/output/Ext.CompositeElement.html b/docs/output/Ext.CompositeElement.html deleted file mode 100644 index 0f2cb0ac..00000000 --- a/docs/output/Ext.CompositeElement.html +++ /dev/null @@ -1,89 +0,0 @@ -
CompositeElementLite CompositeElement
Package: | Ext |
Defined In: | CompositeElement.js |
Class: | CompositeElement |
Extends: | CompositeElementLite |
This class encapsulates a collection of DOM elements, providing methods to filter -members, or to perform collective actions upon the whole set.
-Although they are not listed, this class supports all of the methods of Ext.Element and -Ext.Fx. The methods from these classes will be performed on all the elements in this collection.
-All methods return this and can be chained.
-Usage: -var els = Ext.select("#some-el div.some-class", true);
-// or select directly from an existing element
-var el = Ext.get('some-el');
-el.select('div.some-class', true);
-
-els.setWidth(100); // all elements become 100 width
-els.hide(true); // all elements fade out and hide
-// or
-els.setWidth(100).hide(true);
Property | Defined By | |
---|---|---|
elements : Array The Array of DOM elements which this CompositeElement encapsulates. Read-only.
-This will not usually be accessed in d... The Array of DOM elements which this CompositeElement encapsulates. Read-only. -This will not usually be accessed in developers' code, but developers wishing -to augment the capabilities of the CompositeElementLite class may use it when adding -methods to the class. -For example to add the
| CompositeElementLite |
Method | Defined By | |
---|---|---|
( Function fn , [Object scope ] )
- :
- CompositeElementIterates each element in this composite
-calling the supplied function using Ext.each. Iterates each element in this composite
-calling the supplied function using Ext.each.Parameters:
| CompositeElement | |
add( Mixed els )
- :
- CompositeElementAdds elements to this Composite object. Adds elements to this Composite object. Parameters:
| CompositeElementLite | |
clear()
- :
- void Removes all elements. Removes all elements. Parameters:
| CompositeElementLite | |
contains( el {Mixed} )
- :
- BooleanReturns true if this composite contains the passed element Returns true if this composite contains the passed element Parameters:
| CompositeElementLite | |
each( Function fn , [Object scope ] )
- :
- CompositeElementCalls the passed function for each element in this composite. Calls the passed function for each element in this composite. Parameters:
| CompositeElementLite | |
fill( Mixed els )
- :
- CompositeElementClears this Composite and adds the elements passed. Clears this Composite and adds the elements passed. Parameters:
| CompositeElementLite | |
filter( String/Function selector )
- :
- CompositeElementFilters this composite to only elements that match the passed selector. Filters this composite to only elements that match the passed selector. Parameters:
| CompositeElementLite | |
first()
- :
- Ext.Element Returns the first Element Returns the first Element Parameters:
| CompositeElementLite | |
getCount()
- :
- Number Returns the number of elements in this Composite. Returns the number of elements in this Composite. Parameters:
| CompositeElementLite | |
indexOf( el {Mixed} )
- :
- NumberFind the index of the passed element within the composite collection. Find the index of the passed element within the composite collection. Parameters:
| CompositeElementLite | |
item( Number index )
- :
- Ext.ElementReturns a flyweight Element of the dom element object at the specified index Returns a flyweight Element of the dom element object at the specified index Parameters:
| CompositeElementLite | |
last()
- :
- Ext.Element Returns the last Element Returns the last Element Parameters:
| CompositeElementLite | |
removeElement( Mixed el , [Boolean removeDom ] )
- :
- CompositeElementRemoves the specified element(s). Removes the specified element(s). Parameters:
| CompositeElementLite | |
replaceElement( Mixed el , Mixed replacement , [Boolean domReplace ] )
- :
- CompositeElementReplaces the specified element with the passed element. Replaces the specified element with the passed element. Parameters:
| CompositeElementLite |