/* 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\nThe use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.
\n\n\nCollection of matching regular expressions and code snippets.\nEach capture group within () will be replace the {} in the select\nstatement as specified by their index.
\nDefaults 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}")}};'}]
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, > <.
\nObject hash of \"pseudo class\" filter functions which are used when filtering selections. Each function is passed\ntwo parameters:
\n\n\nA filter function returns an Array of DOM elements which conform to the pseudo class.
\n\n\nIn 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.
For example, to filter <a>
elements to only return links to external resources:
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:
var externalLinks = Ext.select(\"a:external\");\n\n\n
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.
\nThe selector/xpath query
\nEither \"select\" (the default) or \"simple\" for a simple selector match
\nFilters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
\nAn array of elements to filter
\nThe simple selector to test
\nIf true, it returns the elements that DON'T match\nthe selector instead of the ones that match
\nAn Array of DOM elements which match the selector. If there are\nno matches, and empty Array is returned.
\nSelects a group of elements.
\nThe selector/xpath query (can be a comma separated list of selectors)
\nThe start of the query (defaults to document).
\nAn Array of DOM elements which match the selector. If there are\nno matches, and empty Array is returned.
\nSelects a single element.
\nThe selector/xpath query
\nThe start of the query (defaults to document).
\nThe DOM element which matched the selector.
\n