blob: a9d0cd186341e21bec2c04cc57069e2027d9b252 (
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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>PROGRAMMATIC - Dojo Button 100 Test</title>
<script type="text/javascript" src="../../dojo/dojo.js" XdjConfig='isDebug: true, debugAtAllCosts: true'></script>
<script type="text/javascript">
dojo.require("dijit.form.Button");
dojo.require("dojo.parser");
logMessage = window.alert;
</script>
<style>
@import "../themes/tundra/tundra.css";
/* group multiple buttons in a row */
.box {
display: block;
text-align: center;
}
.box .dojoButton {
width:80px;
margin-right: 10px;
}
.dojoButtonContents {
font-size: 1.6em;
}
#buttonContainer {
border:1px solid black;
width:100%;
}
#results {
color:darkred;
}
</style>
</head>
<body class=tundra>
<h2>Creating dojot.form.buttons programmatically</h2>
<h3 id="results"></h3>
<div id="buttonContainer" class='box'></div>
<br>
Pass "?count=<i><b>n</b></i>" in the query string to change the number of buttons.
<script type="text/javascript">
// See if we can make a widget in script and attach it to the DOM ourselves.
function makeEm() {
var queryCount = location.search.match(/count=(\d*)/);
var count = (queryCount ? parseInt(queryCount[1]) : 100);
var container = dojo.byId("buttonContainer");
var t0 = new Date().getTime();
for (var i = 1; i <= count; i++) {
var it =
new dijit.form.Button(
{label:"Button "+i, onclick:'logMessage("clicked simple")'}
);
container.appendChild(it.domNode);
it.domNode.style.display = '';
}
var t1 = new Date().getTime();
dojo.byId("results").innerHTML = "It took " + (t1 - t0) + " msec to create " + count + " Buttons programmatically.";
}
dojo.addOnLoad(makeEm);
</script>
</body>
</html>
|