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.
72 lines
2.1 KiB
72 lines
2.1 KiB
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
|
<html> |
|
<head> |
|
<title>Dojo DnD container test</title> |
|
<style type="text/css"> |
|
@import "../../resources/dojo.css"; |
|
@import "dndDefault.css"; |
|
|
|
body { |
|
padding: 20px; |
|
} |
|
|
|
</style> |
|
<script type="text/javascript" src="../../dojo.js" data-dojo-config="isDebug: true"></script> |
|
|
|
<script type="text/javascript"> |
|
require(["dojo/dnd/Container", "dojo/dom", "dojo/domReady!"], function(Container, dom){ |
|
var c1, c2, c3, c4, c5; |
|
c1 = new Container(dom.byId("container1")); |
|
c2 = new Container(dom.byId("container2")); |
|
c3 = new Container(dom.byId("container3")); |
|
c4 = new Container(dom.byId("container4")); |
|
c5 = new Container(dom.byId("container5")); |
|
}); |
|
</script> |
|
</head> |
|
<body> |
|
<h1>Dojo DnD container test</h1> |
|
<p>Containers have a notion of a "current container", and one element can be "current".</p> |
|
<p>see <a href="dndDefault.css">dndDefault.css</a> for example styling</p> |
|
<h2>DIV container</h2> |
|
<div id="container1" class="container"> |
|
<div class="dojoDndItem">Item 1</div> |
|
<div class="dojoDndItem">Item 2</div> |
|
<div class="dojoDndItem">Item 3</div> |
|
</div> |
|
<h2>UL container</h2> |
|
<ul id="container2" class="container"> |
|
<li class="dojoDndItem">Item 1</li> |
|
<li class="dojoDndItem">Item 2</li> |
|
<li class="dojoDndItem">Item 3</li> |
|
</ul> |
|
<h2>OL container</h2> |
|
<ol id="container3" class="container"> |
|
<li class="dojoDndItem">Item 1</li> |
|
<li class="dojoDndItem">Item 2</li> |
|
<li class="dojoDndItem">Item 3</li> |
|
</ol> |
|
<h2>TABLE container</h2> |
|
<table id="container4" class="container" border="1px solid black"> |
|
<tr class="dojoDndItem"> |
|
<td>A</td> |
|
<td>row 1</td> |
|
</tr> |
|
<tr class="dojoDndItem"> |
|
<td>B</td> |
|
<td>row 2</td> |
|
</tr> |
|
<tr class="dojoDndItem"> |
|
<td>C</td> |
|
<td>row 3</td> |
|
</tr> |
|
</table> |
|
<h2>P container with SPAN elements</h2> |
|
<p>Elements of this container are layed out horizontally.</p> |
|
<p id="container5" class="container"> |
|
<span class="dojoDndItem"> Item 1 </span> |
|
<span class="dojoDndItem"> Item 2 </span> |
|
<span class="dojoDndItem"> Item 3 </span> |
|
</p> |
|
</body> |
|
</html>
|
|
|