e44a7e37b6
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
37 lines
903 B
HTML
37 lines
903 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
|
"http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>widget infrastructure test</title>
|
|
|
|
<script type="text/javascript" src="../../dojo/dojo.js"
|
|
djConfig="isDebug: true"></script>
|
|
|
|
<script type="text/javascript">
|
|
dojo.require("dijit.form.Button");
|
|
|
|
dojo.addOnLoad(function(){
|
|
for(var i=1; i<=3; i++){
|
|
var node = dojo.byId("b"+i);
|
|
var myButton = new dijit.form.Button(null, node);
|
|
}
|
|
});
|
|
|
|
</script>
|
|
|
|
<style type="text/css">
|
|
|
|
@import "../../dojo/resources/dojo.css";
|
|
@import "../themes/tundra/tundra.css";
|
|
@import "css/dijitTests.css";
|
|
|
|
body { padding: 5em; }
|
|
</style>
|
|
</head>
|
|
|
|
<body class="tundra">
|
|
<button id="b1" style="background: yellow;">button #1</button>
|
|
<button id="b2" style="background: orange;">button #2</button>
|
|
<button id="b3" style="background: violet;">button #3</button>
|
|
</body>
|
|
</html>
|