Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / docs / api / Ext.util.Filter.html
diff --git a/docs/api/Ext.util.Filter.html b/docs/api/Ext.util.Filter.html
new file mode 100644 (file)
index 0000000..5be831f
--- /dev/null
@@ -0,0 +1,92 @@
+<!DOCTYPE html><html><head><title>Ext.util.Filter | Ext JS 4.0 Documentation</title><script type="text/javascript" src="../ext-all.js"></script><link rel="stylesheet" href="../reset.css" type="text/css"><link rel="stylesheet" href="../scrollbars.css" type="text/css"><link rel="stylesheet" href="../docs.css" type="text/css"><link id="styleCss" rel="stylesheet" href="../style.css" type="text/css"><script type="text/javascript" src="../prettify.js"></script><link rel="stylesheet" href="../prettify.css" type="text/css"><!-- link(rel: 'stylesheet', href: req.baseURL + '/css/ext4.css', type: 'text/css')--><link rel="shortcut icon" type="image/ico" href="../favicon.ico"><!--[if IE]>
+<style type="text/css">.head-band { display: none; }
+.header { border: 0; top: 0; left: 0px; background: url(../header.gif) repeat-x; }
+.doc-tab .members .member a.more { background-color: #efefef; }
+</style><link rel="stylesheet" href="/new/css/ie.css" type="text/css"><![endif]-->
+</head><body id="ext-body" class="iScroll"><div id="notice" class="notice">For up to date documentation and features, visit 
+<a href="http://docs.sencha.com/ext-js/4-0">http://docs.sencha.com/ext-js/4-0</a></div><div class="wrapper"><div class="head-band"></div><div class="header"><h2><a href="../index.html">Sencha Documentation</a></h2></div><div id="search"><form><input type="text" placeholder="Search" id="search-field" autocomplete="off" name="q"></form><div id="search-box"></div></div><div id="treePanel"></div><div id="container"><script type="text/javascript">
+
+    req = {
+        liveURL: '.',
+        standAloneMode: true,
+        origDocClass: 'Ext.util.Filter',
+        docClass: 'Ext.util.Filter',
+        docReq: 'Ext.util.Filter',
+        version: '4.0',
+        baseURL: '.',
+        baseDocURL: '.',
+        baseProdURL: '.'
+    };
+
+    clsInfo = {};
+
+
+
+</script>
+
+<script type="text/javascript" src="../search.js"></script>
+<!--script type="text/javascript" src="/new/javascripts/app/examples.js"></script-->
+<script type="text/javascript" src="../class_tree.js"></script>
+<script type="text/javascript" src="../class_doc.js"></script>
+<script type="text/javascript">
+    req.source = 'Filter.html#Ext-util.Filter';
+    clsInfo = {"methods":["Filter"],"cfgs":["anyMatch","caseSensitive","exactMatch","filterFn","property","root"],"properties":[],"events":[],"subclasses":[]};
+    Ext.onReady(function() {
+        Ext.create('Docs.classPanel');
+    });
+</script><div id="top-block" class="top-block"><h1 id="clsTitle" class="cls"><a href="../source/Filter.html#Ext-util.Filter" target="_blank">Ext.util.Filter</a></h1></div><div id="docContent"><div id="doc-overview-content"><div class="lft"><p>Represents a filter that can be applied to a <a href="Ext.util.MixedCollection.html" rel="Ext.util.MixedCollection" class="docClass">MixedCollection</a>. Can either simply
+filter on a property/value pair or pass in a filter function with custom logic. Filters are always used in the context
+of MixedCollections, though <a href="Ext.data.Store.html" rel="Ext.data.Store" class="docClass">Store</a>s frequently create them when filtering and searching on their
+records. Example usage:</p>
+
+
+<pre class="prettyprint"><code>//set up a fictional MixedCollection containing a few people to filter on
+var allNames = new Ext.util.MixedCollection();
+allNames.addAll([
+    {id: 1, name: 'Ed',    age: 25},
+    {id: 2, name: 'Jamie', age: 37},
+    {id: 3, name: 'Abe',   age: 32},
+    {id: 4, name: 'Aaron', age: 26},
+    {id: 5, name: 'David', age: 32}
+]);
+
+var ageFilter = new Ext.util.Filter({
+    property: 'age',
+    value   : 32
+});
+
+var longNameFilter = new Ext.util.Filter({
+    filterFn: function(item) {
+        return item.name.length > 4;
+    }
+});
+
+//a new MixedCollection with the 3 names longer than 4 characters
+var longNames = allNames.filter(longNameFilter);
+
+//a new MixedCollection with the 2 people of age 24:
+var youngFolk = allNames.filter(ageFilter);
+</code></pre>
+
+<div class="members"><div class="m-cfgs"><div class="definedBy">Defined By</div><a name="configs"></a><h3 class="cfg p">Config Options</h3><h4 class="cfgGroup">Other Configs</h4><div id="config-anyMatch" class="member f ni"><a href="Ext.util.Filter.html#config-anyMatch" rel="config-anyMatch" class="expand more"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.util.Filter.html" class="definedIn docClass">Ext.util.Filter</a><br/><a href="../source/Filter.html#Ext-util.Filter-cfg-anyMatch" class="viewSource">view source</a></div><a name="anyMatch"></a><a name="config-anyMatch"></a><a href="Ext.util.Filter.html#" rel="config-anyMatch" class="cls expand">anyMatch</a><span> : Boolean</span></div><div class="description"><div class="short"><p>True to allow any match - no regex start/end line anchors will be added. Defaults to false</p>
+</div><div class="long"><p>True to allow any match - no regex start/end line anchors will be added. Defaults to false</p>
+</div></div></div><div id="config-caseSensitive" class="member ni"><a href="Ext.util.Filter.html#config-caseSensitive" rel="config-caseSensitive" class="expand more"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.util.Filter.html" class="definedIn docClass">Ext.util.Filter</a><br/><a href="../source/Filter.html#Ext-util.Filter-cfg-caseSensitive" class="viewSource">view source</a></div><a name="caseSensitive"></a><a name="config-caseSensitive"></a><a href="Ext.util.Filter.html#" rel="config-caseSensitive" class="cls expand">caseSensitive</a><span> : Boolean</span></div><div class="description"><div class="short"><p>True to make the regex case sensitive (adds 'i' switch to regex). Defaults to false.</p>
+</div><div class="long"><p>True to make the regex case sensitive (adds 'i' switch to regex). Defaults to false.</p>
+</div></div></div><div id="config-exactMatch" class="member ni"><a href="Ext.util.Filter.html#config-exactMatch" rel="config-exactMatch" class="expand more"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.util.Filter.html" class="definedIn docClass">Ext.util.Filter</a><br/><a href="../source/Filter.html#Ext-util.Filter-cfg-exactMatch" class="viewSource">view source</a></div><a name="exactMatch"></a><a name="config-exactMatch"></a><a href="Ext.util.Filter.html#" rel="config-exactMatch" class="cls expand">exactMatch</a><span> : Boolean</span></div><div class="description"><div class="short"><p>True to force exact match (^ and $ characters added to the regex). Defaults to false.
+Ignored if anyMatch is true.</p>
+</div><div class="long"><p>True to force exact match (^ and $ characters added to the regex). Defaults to false.
+Ignored if anyMatch is true.</p>
+</div></div></div><div id="config-filterFn" class="member ni"><a href="Ext.util.Filter.html#config-filterFn" rel="config-filterFn" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.util.Filter.html" class="definedIn docClass">Ext.util.Filter</a><br/><a href="../source/Filter.html#Ext-util.Filter-cfg-filterFn" class="viewSource">view source</a></div><a name="filterFn"></a><a name="config-filterFn"></a><a href="Ext.util.Filter.html#" rel="config-filterFn" class="cls expand">filterFn</a><span> : Function</span></div><div class="description"><div class="short">A custom filter function which is passed each item in the Ext.util.MixedCollection
+in turn. Should return true to acc...</div><div class="long"><p>A custom filter function which is passed each item in the <a href="Ext.util.MixedCollection.html" rel="Ext.util.MixedCollection" class="docClass">Ext.util.MixedCollection</a>
+in turn. Should return true to accept each item or false to reject it</p>
+</div></div></div><div id="config-property" class="member ni"><a href="Ext.util.Filter.html#config-property" rel="config-property" class="expand more"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.util.Filter.html" class="definedIn docClass">Ext.util.Filter</a><br/><a href="../source/Filter.html#Ext-util.Filter-cfg-property" class="viewSource">view source</a></div><a name="property"></a><a name="config-property"></a><a href="Ext.util.Filter.html#" rel="config-property" class="cls expand">property</a><span> : String</span></div><div class="description"><div class="short"><p>The property to filter on. Required unless a <a href="Ext.util.Filter.html#filter" rel="Ext.util.Filter#filter" class="docClass">filter</a> is passed</p>
+</div><div class="long"><p>The property to filter on. Required unless a <a href="Ext.util.Filter.html#filter" rel="Ext.util.Filter#filter" class="docClass">filter</a> is passed</p>
+</div></div></div><div id="config-root" class="member ni"><a href="Ext.util.Filter.html#config-root" rel="config-root" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.util.Filter.html" class="definedIn docClass">Ext.util.Filter</a><br/><a href="../source/Filter.html#Ext-util.Filter-cfg-root" class="viewSource">view source</a></div><a name="root"></a><a name="config-root"></a><a href="Ext.util.Filter.html#" rel="config-root" class="cls expand">root</a><span> : String</span></div><div class="description"><div class="short">Optional root property. This is mostly useful when filtering a Store, in which case we set the
+root to 'data' to make...</div><div class="long"><p>Optional root property. This is mostly useful when filtering a Store, in which case we set the
+root to 'data' to make the filter pull the <a href="Ext.util.Filter.html#property" rel="Ext.util.Filter#property" class="docClass">property</a> out of the data object of each item</p>
+</div></div></div></div><div class="m-methods"><a name="methods"></a><div class="definedBy">Defined By</div><h3 class="mth p">Methods</h3><div id="method-Filter" class="member f ni"><a href="Ext.util.Filter.html#method-Filter" rel="method-Filter" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.util.Filter.html" class="definedIn docClass">Ext.util.Filter</a><br/><a href="../source/Filter.html#Ext-util.Filter-method-constructor" class="viewSource">view source</a></div><a name="Filter"></a><a name="method-Filter"></a><a href="Ext.util.Filter.html#" rel="method-Filter" class="cls expand">Filter</a>(
+<span class="pre">Object config</span>)
+ : void</div><div class="description"><div class="short"><p>&nbsp;</p></div><div class="long">
+<h3 class="pa">Parameters</h3><ul><li><span class="pre">config</span> : Object<div class="sub-desc"><p>Config object</p>
+</div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
+</li></ul></div></div></div></div></div></div></div><div id="pageContent"></div></div></div></div></body></html>
\ No newline at end of file