blob: 40c6bac8b3d2243d6ae9391ddf0423ef798afa28 (
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
|
<!--
This file is a demo of the JsonRestStore connected to Persevere
-->
<html>
<head>
<title>Demo of JsonRestStore</title>
<style type="text/css">
@import "../../../dijit/themes/tundra/tundra.css";
@import "../../../dojo/resources/dojo.css";
</style>
<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug: true, parseOnLoad: true"></script>
<script type="text/javascript">
dojo.require("dojox.rpc.Service");
dojo.require("dojox.data.JsonRestStore");
function init(){
var persevereServices = new dojox.rpc.Service("/persevere/SMD"); // just connect to the auto-generated SMD from persevere
dynaStore = new dojox.data.JsonRestStore({service:persevereServices.dyna}); // and create a store for it
}
dojo.addOnLoad(init);
function invokeSearch() {
dynaStore.fetch({query:"0",onComplete:function(root) {
var name = dynaStore.getValue(root,"name");
alert("old name " + name);
dynaStore.setValue(root,"name","new name" + Math.random());
dynaStore.save();
}});
}
</script>
</head>
<body class="tundra">
<h1>
DEMO: JsonRestStore Search
</h1>
<hr>
<h3>
Description:
</h3>
<p>
This simple demo shows how JsonRestStore can be used with Persevere.
</p>
<p>
</p>
<blockquote>
<!--
The store instance used by this demo.
-->
<table>
<tbody>
<tr>
<td>
<button name="search" id="searchButton" onclick="invokeSearch()">Search</button>
</td>
</tr>
</tbody>
</table>
<hr/>
</body>
</html>
|