Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / app / store / Search.js
diff --git a/docs/app/store/Search.js b/docs/app/store/Search.js
new file mode 100644 (file)
index 0000000..3194850
--- /dev/null
@@ -0,0 +1,14 @@
+/**
+ * Store for keeping search results.
+ */
+Ext.define('Docs.store.Search', {
+    extend: 'Ext.data.Store',
+
+    fields: ['cls', 'member', 'type', 'xtypes'],
+    proxy: {
+        type: 'memory',
+        reader: {
+            type: 'json'
+        }
+    }
+});
\ No newline at end of file