can
Version:
MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.
77 lines (74 loc) • 2.79 kB
HTML
<html>
<head>
<title>Dojo DnD selector 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/Selector", "dojo/dom", "dojo/domReady!"], function(Selector, dom){
var c1, c2, c3, c4, c5;
c1 = new Selector(dom.byId("container1"), {singular: true});
c2 = new Selector(dom.byId("container2"));
c3 = new Selector(dom.byId("container3"));
c4 = new Selector(dom.byId("container4"));
c5 = new Selector(dom.byId("container5"));
});
</script>
</head>
<body>
<h1>Dojo DnD selector test</h1>
<p>Containers have a notion of a "current container", and one element can be "current". All containers on this page are selectors that allow to select elements.</p>
<p>Following selection modes are supported by default:</p>
<ul>
<li>Simple click — selects a single element, all other elements will be unselected.</li>
<li>Ctrl+click — toggles a selection state of an element (use Meta key on Mac).</li>
<li>Shift+click — selects a range of elements from the previous anchor to the current element.</li>
<li>Ctrl+Shift+click — adds a range of elements from the previous anchor to the current element (use Meta key on Mac).</li>
</ul>
<h2>DIV selector</h2>
<p>This selector can select just one element a time. It was specified during the creation time.</p>
<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 selector</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 selector</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 selector</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 selector 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>