X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..2e847cf21b8ab9d15fa167b315ca5b2fa92638fc:/docs/output/Ext.DomQuery.html diff --git a/docs/output/Ext.DomQuery.html b/docs/output/Ext.DomQuery.html index c456c03d..5514c8de 100644 --- a/docs/output/Ext.DomQuery.html +++ b/docs/output/Ext.DomQuery.html @@ -1,4 +1,4 @@ -
Properties Methods Events Direct Link

Class Ext.DomQuery

Package:Ext
Defined In:DomQuery.js
Class:DomQuery
Extends:Object
Provides high performance selector/xpath processing by compiling queries into reusable functions. New pseudo classes and matchers can be plugged. It works on HTML and XML documents (if a content node is passed in). +

Class Ext.DomQuery

Package:Ext
Defined In:DomQuery.js
Class:DomQuery
Extends:Object
Provides high performance selector/xpath processing by compiling queries into reusable functions. New pseudo classes and matchers can be plugged. It works on HTML and XML documents (if a content node is passed in).

DomQuery supports most of the CSS3 selectors spec, along with some custom selectors and basic XPath.

@@ -45,6 +45,7 @@ All selectors, attribute filters and pseudos below can be combined infinitely in
  • E:has(S) an E element that has a descendent that matches simple selector S
  • E:next(S) an E element whose next sibling matches simple selector S
  • E:prev(S) an E element whose previous sibling matches simple selector S
  • +
  • E:any(S1|S2|S2) an E element which matches any of the simple selectors S1, S2 or S3//\\
  • CSS Value Selectors:

      @@ -54,7 +55,10 @@ All selectors, attribute filters and pseudos below can be combined infinitely in
    • E{display*=none} css value "display" that contains the substring "none"
    • E{display%=2} css value "display" that is evenly divisible by 2
    • E{display!=none} css value "display" that does not equal "none"
    • -


    This class is a singleton and cannot be created directly.

    Public Properties

    PropertyDefined By
     matchers : Object
    Collection of matching regular expressions and code snippets.
    DomQuery