summaryrefslogtreecommitdiffstatshomepage
path: root/includes/js/dojox/data/demos/demo_MultiStores.html
diff options
context:
space:
mode:
authorGravatar mensonge2008-11-14 15:39:19 +0000
committerGravatar mensonge2008-11-14 15:39:19 +0000
commit1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch)
tree3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dojox/data/demos/demo_MultiStores.html
parent104d59099e048688c4dbac37d72137006e396558 (diff)
downloadscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz
scuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.zip
Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojox/data/demos/demo_MultiStores.html')
-rw-r--r--includes/js/dojox/data/demos/demo_MultiStores.html72
1 files changed, 0 insertions, 72 deletions
diff --git a/includes/js/dojox/data/demos/demo_MultiStores.html b/includes/js/dojox/data/demos/demo_MultiStores.html
deleted file mode 100644
index 9faa8be..0000000
--- a/includes/js/dojox/data/demos/demo_MultiStores.html
+++ /dev/null
@@ -1,72 +0,0 @@
-<!--
- This file is a demo of multiple dojo.data aware widgets using different datastore implementations for displaying data.
--->
-<html>
-<head>
- <title>Demo of Multiple Widgets using different Datastores</title>
- <style type="text/css">
- @import "../../../dijit/themes/tundra/tundra.css";
- @import "../../../dojo/resources/dojo.css";
- @import "../../../dijit/tests/css/dijitTests.css";
- </style>
-
- <script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug: true, parseOnLoad: true"></script>
- <script type="text/javascript">
- dojo.require("dojo.parser");
- dojo.require("dijit.form.ComboBox");
- dojo.require("dijit.Tree");
-
- dojo.require("dojox.data.OpmlStore");
- dojo.require("dojo.data.ItemFileReadStore");
-
- </script>
-</head>
-
-<body class="tundra">
- <h1>
- DEMO: Multiple DataStore implementations with dojo.data aware Widgets
- </h1>
- <hr>
- <h3>
- Description:
- </h3>
- <p>
- This simple demo shows how widgets which know only the dojo.data interfaces can work with data sources of varying formats. In this case an OpmlStore
- and a ItemFileReadStore are used to house the same data in different formats.
- </p>
-
- <blockquote>
-
- <!--
- The store instances used by this demo.
- -->
- <div dojoType="dojo.data.ItemFileReadStore" url="geography.json" jsId="ifrGeoStore"></div>
- <div dojoType="dojox.data.OpmlStore" url="geography.xml" label="text" jsId="opmlGeoStore"></div>
-
- <h3>
- Widgets using OpmlStore:
- </h3>
- <blockquote>
- <b>ComboBox:</b><br>
- <input dojoType="dijit.form.ComboBox" id="combo1" name="combo1" class="medium" store="opmlGeoStore" searchAttr="text" query="{}"></input>
- <br>
- <br>
-
- <b>Tree:</b><br>
- <div dojoType="dijit.Tree" id="tree1" label="Continents" store="opmlGeoStore"></div>
- </blockquote>
-
- <h3>
- Widgets using ItemFileReadStore:
- </h3>
- <blockquote>
- <b>ComboBox:</b><br>
- <input dojoType="dijit.form.ComboBox" id="combo2" name="combo2" class="medium" store="ifrGeoStore" searchAttr="name" query="{}"></input>
- <br>
- <br>
-
- <b>Tree:</b><br>
- <div dojoType="dijit.Tree" id="tree2" label="Continents" store="ifrGeoStore"></div>
- </blockquote>
-</body>
-</html>