diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-13 09:49:11 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-13 09:49:11 +0000 |
commit | e44a7e37b6c7b5961adaffc62b9042b8d442938e (patch) | |
tree | 95b67c356e93163467db2451f2b8cce84ed5d582 /includes/js/dojox/rpc/demos/demo_JsonRestStore_CouchDB.html | |
parent | a62b9742ee5e28bcec6872d88f50f25b820914f6 (diff) | |
download | semanticscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.gz semanticscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.bz2 |
New feature: basic Ajax suggestion for tags and implementation of Dojo toolkit
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojox/rpc/demos/demo_JsonRestStore_CouchDB.html')
-rw-r--r-- | includes/js/dojox/rpc/demos/demo_JsonRestStore_CouchDB.html | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/includes/js/dojox/rpc/demos/demo_JsonRestStore_CouchDB.html b/includes/js/dojox/rpc/demos/demo_JsonRestStore_CouchDB.html new file mode 100644 index 0000000..f5fc26c --- /dev/null +++ b/includes/js/dojox/rpc/demos/demo_JsonRestStore_CouchDB.html @@ -0,0 +1,125 @@ +<!-- + + This file is a demo of the JsonRestStore connected to CouchDB. + +--> + +<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.CouchDBRestStore"); + function init(){ + var couchSMD = dojox.data.CouchDBRestStore.generateSMD("/couchDB/"); + var couchServices = new dojox.rpc.Service(couchSMD); // just connect to the auto-generated SMD from persevere + friendStore = new dojox.data.CouchDBRestStore({service:couchServices.friends}); // and create a store for it + } + + dojo.addOnLoad(init); + + function invokeSearch() { + friendStore.fetch({count:3,onComplete:function(friends) { + var firstFriend = friendStore.getValue(friends.rows,0); + var name = friendStore.getValue(firstFriend,"name"); + alert("old name " + name); + friendStore.setValue(firstFriend,"name","new name" + Math.random()); + var newItem = {"name":"Another friend",age:31}; + friendStore.newItem(newItem); + friendStore.onSave= function() { + delete friendStore.onSave; + friendStore.setValue(newItem,"name","change after creating"); + friendStore.save(); + } + friendStore.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> + |