/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_DomQuery({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"

Files

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).

\n\n

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

\n\n\n\n\n

\nAll selectors, attribute filters and pseudos below can be combined infinitely in any order. For example \"div.foo:nth-child(odd)[@foo=bar].bar:first\" would be a perfectly valid selector. Node filters are processed in the order in which they appear, which allows you to optimize your queries for your document structure.\n

\n\n\n

Element Selectors:

\n\n\n\n\n\n

Attribute Selectors:

\n\n\n

The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.

\n\n\n\n\n\n

Pseudo Classes:

\n\n\n\n\n\n

CSS Value Selectors:

\n\n\n\n\n
Defined By

Properties

Collection of matching regular expressions and code snippets. ...

Collection of matching regular expressions and code snippets.\nEach capture group within () will be replace the {} in the select\nstatement as specified by their index.

\n

Defaults to: [{re: /^\\.([\\w\\-]+)/, select: 'n = byClassName(n, " {1} ");'}, {re: /^\\:([\\w\\-]+)(?:\\(((?:[^\\s>\\/]*|.*?))\\))?/, select: 'n = byPseudo(n, "{1}", "{2}");'}, {re: /^(?:([\\[\\{])(?:@)?([\\w\\-]+)\\s?(?:(=|.=)\\s?(["']?)(.*?)\\4)?[\\]\\}])/, select: 'n = byAttribute(n, "{2}", "{5}", "{3}", "{1}");'}, {re: /^#([\\w\\-]+)/, select: 'n = byId(n, "{1}");'}, {re: /^@([\\w\\-]+)/, select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'}]

Ext.DomQuery
view source
: Object
Collection of operator comparison functions. ...

Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.\nNew operators can be added as long as the match the format c= where c is any character other than space, > <.

\n
Ext.DomQuery
view source
: Object
Object hash of \"pseudo class\" filter functions which are used when filtering selections. ...

Object hash of \"pseudo class\" filter functions which are used when filtering selections. Each function is passed\ntwo parameters:

\n\n\n
    \n
  • c : Array
    An Array of DOM elements to filter.
  • \n
  • v : String
    The argument (if any) supplied in the selector.
  • \n
\n\n\n

A filter function returns an Array of DOM elements which conform to the pseudo class.

\n\n\n

In addition to the provided pseudo classes listed above such as first-child and nth-child,\ndevelopers may add additional, custom psuedo class filters to select elements according to application-specific requirements.

\n\n\n

For example, to filter <a> elements to only return links to external resources:

\n\n\n

\n\n
Ext.DomQuery.pseudos.external = function(c, v){\n    var r = [], ri = -1;\n    for(var i = 0, ci; ci = c[i]; i++){\n//      Include in result set only if it's a link to an external resource\n        if(ci.hostname != location.hostname){\n            r[++ri] = ci;\n        }\n    }\n    return r;\n};
\n\n\n

\nThen external links could be gathered with the following statement:

\n\n
var externalLinks = Ext.select(\"a:external\");\n
\n\n
Defined By

Methods

Ext.DomQuery
view source
( selector, [type] ) : Function
Compiles a selector/xpath query into a reusable function. ...

Compiles a selector/xpath query into a reusable function. The returned function\ntakes one parameter \"root\" (optional), which is the context node from where the query should start.

\n

Parameters

  • selector : String

    The selector/xpath query

    \n
  • type : String (optional)

    Either \"select\" (the default) or \"simple\" for a simple selector match

    \n

Returns

Ext.DomQuery
view source
( el, selector, nonMatches ) : Array
Filters an array of elements to only include matches of a simple selector (e.g. ...

Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)

\n

Parameters

  • el : Array

    An array of elements to filter

    \n
  • selector : String

    The simple selector to test

    \n
  • nonMatches : Boolean

    If true, it returns the elements that DON'T match\nthe selector instead of the ones that match

    \n

Returns

  • Array

    An Array of DOM elements which match the selector. If there are\nno matches, and empty Array is returned.

    \n
Ext.DomQuery
view source
( el, selector ) : Boolean
Returns true if the passed element(s) match the passed simple selector (e.g. ...

Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)

\n

Parameters

  • el : String/HTMLElement/Array

    An element id, element or array of elements

    \n
  • selector : String

    The simple selector to test

    \n

Returns

  • Boolean
    \n
Ext.DomQuery
view source
( selector, [root] ) : Array
Selects a group of elements. ...

Selects a group of elements.

\n

Parameters

  • selector : String

    The selector/xpath query (can be a comma separated list of selectors)

    \n
  • root : Node/String (optional)

    The start of the query (defaults to document).

    \n

Returns

  • Array

    An Array of DOM elements which match the selector. If there are\nno matches, and empty Array is returned.

    \n
Ext.DomQuery
view source
( selector, [root] ) : Element
Selects a single element. ...

Selects a single element.

\n

Parameters

  • selector : String

    The selector/xpath query

    \n
  • root : Node (optional)

    The start of the query (defaults to document).

    \n

Returns

  • Element

    The DOM element which matched the selector.

    \n
Ext.DomQuery
view source
( selector, [root], [defaultValue] ) : Number
Selects the value of a node, parsing integers and floats. ...

Selects the value of a node, parsing integers and floats. Returns the defaultValue, or 0 if none is specified.

\n

Parameters

  • selector : String

    The selector/xpath query

    \n
  • root : Node (optional)

    The start of the query (defaults to document).

    \n
  • defaultValue : Number (optional)
    \n

Returns

Ext.DomQuery
view source
( selector, [root], [defaultValue] ) : String
Selects the value of a node, optionally replacing null with the defaultValue. ...

Selects the value of a node, optionally replacing null with the defaultValue.

\n

Parameters

  • selector : String

    The selector/xpath query

    \n
  • root : Node (optional)

    The start of the query (defaults to document).

    \n
  • defaultValue : String (optional)
    \n

Returns

","superclasses":[],"meta":{},"requires":[],"html_meta":{},"statics":{"property":[],"cfg":[],"css_var":[],"method":[],"event":[],"css_mixin":[]},"files":[{"href":"DomQuery.html#Ext-DomQuery","filename":"DomQuery.js"}],"linenr":5,"members":{"property":[{"tagname":"property","owner":"Ext.DomQuery","meta":{},"name":"matchers","id":"property-matchers"},{"tagname":"property","owner":"Ext.DomQuery","meta":{},"name":"operators","id":"property-operators"},{"tagname":"property","owner":"Ext.DomQuery","meta":{},"name":"pseudos","id":"property-pseudos"}],"cfg":[],"css_var":[],"method":[{"tagname":"method","owner":"Ext.DomQuery","meta":{},"name":"compile","id":"method-compile"},{"tagname":"method","owner":"Ext.DomQuery","meta":{},"name":"filter","id":"method-filter"},{"tagname":"method","owner":"Ext.DomQuery","meta":{},"name":"is","id":"method-is"},{"tagname":"method","owner":"Ext.DomQuery","meta":{},"name":"jsSelect","id":"method-jsSelect"},{"tagname":"method","owner":"Ext.DomQuery","meta":{},"name":"selectNode","id":"method-selectNode"},{"tagname":"method","owner":"Ext.DomQuery","meta":{},"name":"selectNumber","id":"method-selectNumber"},{"tagname":"method","owner":"Ext.DomQuery","meta":{},"name":"selectValue","id":"method-selectValue"}],"event":[],"css_mixin":[]},"inheritable":null,"private":null,"component":false,"name":"Ext.DomQuery","singleton":true,"override":null,"inheritdoc":null,"id":"class-Ext.DomQuery","mixins":[],"mixedInto":[]});