-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDragDrop.html
More file actions
54 lines (52 loc) · 1.94 KB
/
Copy pathDragDrop.html
File metadata and controls
54 lines (52 loc) · 1.94 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>MindFusion JS UI Sample - Drag and Drop</title>
<script type="text/javascript" src="common/samples.js"></script>
<link href="common/samples.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="themes/business.css" />
<link rel="stylesheet" type="text/css" href="themes/pastel.css" />
<style type="text/css">
/* The css class for the static list items. */
.static {
background-color: #000 !important;
text-transform: uppercase;
}
</style>
</head>
<body>
<div id="header" style="height: 59px;">
<div style="float: left; margin-left: 5px;">
<a href="../index.html" style="margin-left: 10px;">Index</a>
</div>
<div style="float: right; margin-right: 5px;">
<a href="DragDrop.js" style="margin-right: 10px;">View source</a>
<button id="expandButton" onclick="onExpandCollapse()">
›
</button>
</div>
</div>
<div id="info" style="top: 70px; bottom: 24px;">
<div id="infoTab" style="padding: 10px;">
<h1>
About this sample
</h1>
<p id="pinfo">
The first part of this sample shows how to create static items in a drag-and-drop enabled ListView control.
The second part shows how drag-and-drop groups can be created by handling the dragDrop event.
</p>
</div>
</div>
<div id="content" style="top: 70px; bottom: 24px;">
</div>
<div id="footer" style="height: 24px;">
<span id="copyright"></span>
</div>
<script src="Scripts/drawing.js" type="text/javascript"></script>
<script src="Scripts/controls.js" type="text/javascript"></script>
<script src="Scripts/common.js" type="text/javascript"></script>
<script src="Scripts/common-collections.js" type="text/javascript"></script>
<script src="Scripts/common-ui.js" type="text/javascript"></script>
<script src="DragDrop.js" type="text/javascript"></script>
</body>
</html>