e44a7e37b6
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
|
"http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>Dijit Tree Programmatic Test</title>
|
|
|
|
<style type="text/css">
|
|
@import "../../../dojo/resources/dojo.css";
|
|
@import "../css/dijitTests.css";
|
|
</style>
|
|
|
|
<script type="text/javascript" src="../../../dojo/dojo.js"
|
|
djConfig="parseOnLoad: false, isDebug: true"></script>
|
|
<script type="text/javascript" src="../_testCommon.js"></script>
|
|
|
|
<script language="JavaScript" someProperty="text/javascript">
|
|
dojo.require("dojo.data.ItemFileWriteStore");
|
|
dojo.require("dijit.Tree");
|
|
|
|
dojo.addOnLoad(function(){
|
|
var myStore = new dojo.data.ItemFileWriteStore({url:'../_data/countries.json'});
|
|
var myModel = new dijit.tree.ForestStoreModel({
|
|
store: myStore,
|
|
query: {type:'continent'},
|
|
rootId: "earth",
|
|
rootLabel: "Earth",
|
|
childrenAttrs: ["children"]
|
|
});
|
|
var tree = new dijit.Tree({
|
|
model: myModel
|
|
});
|
|
dojo.body().appendChild(tree.domNode);
|
|
tree.startup();
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1 class="testTitle">Dijit Forest Store Programmatic Test</h1>
|
|
</body>
|
|
</html>
|