You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
3.0 KiB
91 lines
3.0 KiB
<!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" data-dojo-config="isDebug: true"></script> |
|
<script type="text/javascript"> |
|
require(["dojo/parser", "dojo/dnd/Source", "dojo/dnd/Target", "dojo/topic", "dojo/domReady!"], function(parser, Source, Target, topic){ |
|
parser.parse(); |
|
|
|
var c1, c2; |
|
|
|
c1 = new Source("container1"); |
|
c1.insertNodes(false, [1, 2, 3, 4, 5, 6, [1, 2, 3], function(x){ return x + x; }]); |
|
c2 = new Target("container2", {accept: ["money"]}); |
|
|
|
// example subscribe to events |
|
topic.subscribe("/dnd/start",function(foo){ |
|
console.debug(foo); |
|
}); |
|
}); |
|
</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/images/logo.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 data-dojo-type="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 data-dojo-type="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>
|
|
|