X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/d41dc04ad17d1d9125fb2cf72db2b4782dbe3a8c..92c2b89db26be16707f4a805d3303ab2531006e1:/docs/output/Ext.DomQuery.html?ds=inline diff --git a/docs/output/Ext.DomQuery.html b/docs/output/Ext.DomQuery.html index a6ee852a..5514c8de 100644 --- a/docs/output/Ext.DomQuery.html +++ b/docs/output/Ext.DomQuery.html @@ -1,20 +1,4 @@ -
Package: | Ext |
Defined In: | DomQuery.js |
Class: | DomQuery |
Extends: | Object |
Package: | Ext |
Defined In: | DomQuery.js |
Class: | DomQuery |
Extends: | Object |
DomQuery supports most of the CSS3 selectors spec, along with some custom selectors and basic XPath.
@@ -31,7 +15,7 @@ All selectors, attribute filters and pseudos below can be combined infinitely inThe use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.
+The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.
Property | Defined By | |
---|---|---|
matchers : Object Collection of matching regular expressions and code snippets.
+Each capture group within () will be replace the {} in... Collection of matching regular expressions and code snippets.
+Each capture group within () will be replace the {} in the select
+statement as specified by their index. | DomQuery | |
pseudos : Object Object hash of "pseudo class" filter functions which are used when filtering selections. Each function is passed
+two... Object hash of "pseudo class" filter functions which are used when filtering selections. Each function is passed +two parameters:
A filter function returns an Array of DOM elements which conform to the pseudo class. +In addition to the provided pseudo classes listed above such as For example, to filter
+Then external links could be gathered with the following statement:
| DomQuery |
Method | Defined By | |
---|---|---|
compile( String selector , [String type ] )
+ :
+ FunctionCompiles a selector/xpath query into a reusable function. The returned function
+takes one parameter "root" (optional... Compiles a selector/xpath query into a reusable function. The returned function
+takes one parameter "root" (optional), which is the context node from where the query should start. Parameters:
| DomQuery | |
filter( Array el , String selector , Boolean nonMatches )
+ :
+ ArrayFilters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child) Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child) Parameters:
| DomQuery | |
is( String/HTMLElement/Array el , String selector )
+ :
+ BooleanReturns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child) Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child) Parameters:
| DomQuery | |
jsSelect( String selector , [Node/String root ] )
+ :
+ ArraySelects a group of elements. Selects a group of elements. Parameters:
| DomQuery | |
operators()
+ :
+ void Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
+New operato... Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
+New operators can be added as long as the match the format c= where c is any character other than space, > <. Parameters:
| DomQuery | |
selectNode( String selector , [Node root ] )
+ :
+ ElementSelects a single element. Selects a single element. Parameters:
| DomQuery | |
selectNumber( String selector , [Node root ], Number defaultValue )
+ :
+ NumberSelects the value of a node, parsing integers and floats. Returns the defaultValue, or 0 if none is specified. Selects the value of a node, parsing integers and floats. Returns the defaultValue, or 0 if none is specified. Parameters:
| DomQuery | |
selectValue( String selector , [Node root ], String defaultValue )
+ :
+ StringSelects the value of a node, optionally replacing null with the defaultValue. Selects the value of a node, optionally replacing null with the defaultValue. Parameters:
| DomQuery |