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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Dojo DnD form test</title>
<style type="text/css">
@import "../../resources/dojo.css";
@import "../../resources/dnd.css";
@import "dndDefault.css";
body {
padding: 1em;
background:#ededed;
}
#container1,#container2 { width:300px; display:block; }
.clear { clear:both; }
</style>
<script type="text/javascript" src="../../dojo.js" djConfig="isDebug: true, parseOnLoad: true"></script>
<script type="text/javascript" src="../../dnd/Container.js"></script>
<script type="text/javascript" src="../../dnd/Selector.js"></script>
<script type="text/javascript" src="../../dnd/Source.js"></script>
<script type="text/javascript" src="../../dnd/Avatar.js"></script>
<script type="text/javascript" src="../../dnd/Manager.js"></script>
<script type="text/javascript">
dojo.require("dojo.parser");
//dojo.require("dojo.dnd.Source");
//dojo.require("dojo.dnd.Manager");
var c1, c2;
function init(){
c1 = new dojo.dnd.Source("container1");
c1.insertNodes(false, [1, 2, 3, 4, 5, 6, [1, 2, 3], function(x){ return x + x; }]);
c2 = new dojo.dnd.Target("container2", {accept: ["money"]});
// example subscribe to events
dojo.subscribe("/dnd/start",function(foo){
console.debug(foo);
});
};
dojo.addOnLoad(init);
</script>
</head>
<body>
<h1 class="testTitle">Dojo DnD form test</h1>
<p>This is a test to confirm that the DnD container does not interfere with form elements.</p>
<div id="dragLists">
<div style="float:left; margin:5px; ">
<h3>Target 1</h3>
<p id="container1" class="container"></p>
</div>
<div style="float:left; margin:5px; ">
<h3>Target 2: form controls galore</h3>
<form id="container2" class="container" action="http://dojotoolkit.org">
Input text: <input type="text" /><br />
Input checkbox: <input type="checkbox" /><br />
Input radio: <input type="radio" /><br />
Input password: <input type="password" /><br />
Input file: <input type="file" /><br />
Input button: <input type="button" value="Button" /><br />
Input reset: <input type="reset" /><br />
Input submit: <input type="submit" /><br />
Input image: <input type="image" src="http://dojotoolkit.org/misc/feed.png" /><br />
Button: <button>Button</button><br />
Select: <select><option>Yes</option><option>No</option></select><br />
Textarea: <textarea cols="20" rows="3">Some text.</textarea>
</form>
</div>
<div class="clear"></div>
</div>
<p> </p>
<div dojoType="dojo.dnd.Source" class="container">
<div>Source with <strong>skipForm = false</strong> (by default)</div>
<div class="dojoDndItem">Item <strong>X</strong>: <input type="text" value="1" /></div>
<div class="dojoDndItem">Item <strong>Y</strong>: <input type="text" value="2" /></div>
<div class="dojoDndItem">Item <strong>Z</strong>: <input type="text" value="3" /></div>
</div>
<p> </p>
<div dojoType="dojo.dnd.Source" class="container" skipForm="true">
<div>Source with <strong>skipForm = true</strong></div>
<div class="dojoDndItem">Item <strong>A</strong>: <input type="text" value="a" /></div>
<div class="dojoDndItem">Item <strong>B</strong>: <input type="text" value="b" /></div>
<div class="dojoDndItem">Item <strong>C</strong>: <input type="text" value="c" /></div>
</div>
<p>HTML after</p>
</body>
</html>
|