blob: 29ede277d4c31d183a2011e96ea24e03a67986e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
<!--
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.form.FilteringSelect");
dojo.require("dijit.Tree");
dojo.require("dijit.tree.ForestStoreModel");
dojo.require("dojox.data.OpmlStore");
dojo.require("dojox.data.XmlStore");
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>
<div dojoType="dojox.data.XmlStore" url="geography2.xml" label="text" attributeMap="{'text': '@text'}" jsId="xmlGeoStore"></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>Filtering Select:</b><br>
<input dojoType="dijit.form.FilteringSelect" id="fs1" name="fs1" class="medium" store="opmlGeoStore" searchAttr="text" query="{}"></input>
<br>
<br>
<b>Tree:</b><br>
<div dojoType="dijit.tree.ForestStoreModel" jsId="opmlModel"
store="opmlGeoStore" query="{}"
rootId="Continents" rootLabel="Continents" childrenAttrs="children">
</div>
<div dojoType="dijit.Tree" id="tree1" model="opmlModel"></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>Filtering Select:</b><br>
<input dojoType="dijit.form.FilteringSelect" id="fs2" name="fs2" class="medium" store="ifrGeoStore" searchAttr="text" query="{}"></input>
<br>
<br>
<b>Tree:</b><br>
<div dojoType="dijit.tree.ForestStoreModel" jsId="ifrModel"
store="ifrGeoStore" query="{}"
rootId="Continents" rootLabel="Continents" childrenAttrs="children">
</div>
<div dojoType="dijit.Tree" id="tree2" model="ifrModel"></div>
</blockquote>
<h3>
Widgets using XmlStore:
</h3>
<blockquote>
<b>ComboBox:</b><br>
<input dojoType="dijit.form.ComboBox" id="combo3" name="combo3" class="medium" store="xmlGeoStore" searchAttr="text" query="{}"></input>
<br>
<br>
<b>Filtering Select:</b><br>
<input dojoType="dijit.form.FilteringSelect" id="fs3" name="fs3" class="medium" store="xmlGeoStore" searchAttr="text" query="{}"></input>
<br>
<br>
<b>Tree:</b><br>
<div dojoType="dijit.tree.ForestStoreModel" jsId="xmlModel"
store="xmlGeoStore" query="{}"
rootId="Continents" rootLabel="Continents" childrenAttrs="childNodes">
</div>
<div dojoType="dijit.Tree" id="tree3" model="xmlModel"></div>
</blockquote>
</blockquote>
</body>
</html>
|