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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Test dojox.Grid Programmatic Instantiation</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
<style type="text/css">
@import "../../../dojo/resources/dojo.css";
@import "../_grid/tundraGrid.css";
.heading {
font-weight: bold;
padding-bottom: 0.25em;
}
#grid {
border: 1px solid #333;
width: 50em;
height: 30em;
}
</style>
<script type="text/javascript" src="../../../dojo/dojo.js"
djConfig="isDebug:false, debugAtAllCosts: false, parseOnLoad: true"></script>
<script type="text/javascript">
dojo.require("dojox.grid.Grid");
dojo.require("dojo.parser");
</script>
<script type="text/javascript" src="support/test_data.js"></script>
<script type="text/javascript">
dojo.addOnLoad(function(){
// a grid view is a group of columns
var view1 = {
cells: [
[
{name: 'Column 0'},
{name: 'Column 1'},
{name: 'Column 2'},
{name: 'Column 3', width: "150px"},
{name: 'Column 4'}
],
[
{name: 'Column 5'},
{name: 'Column 6'},
{name: 'Column 7'},
{name: 'Column 8', field: 3, colSpan: 2}
]
]
};
// a grid layout is an array of views.
var layout = [ view1 ];
var grid = new dojox.Grid({
"id": "grid",
"model": model,
"structure": layout
});
dojo.byId("gridContainer").appendChild(grid.domNode);
grid.render();
});
</script>
</head>
<body class="tundra">
<div class="heading">dojox.Grid Programmatic Instantiation Test</div>
<div id="gridContainer"></div>
</body>
</html>
|