source: trunk/web/addons/job_monarch/lib/extjs-30/examples/dd/field-to-grid-dd.html @ 625

Last change on this file since 625 was 625, checked in by ramonb, 15 years ago

lib/extjs-30:

  • new ExtJS 3.0
File size: 1.2 KB
Line 
1<html>
2<head>
3<title>Array Grid DropZone Example</title>
4
5    <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
6
7    <!-- GC -->
8        <!-- LIBS -->
9        <script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>
10        <!-- ENDLIBS -->
11
12    <script type="text/javascript" src="../../ext-all-debug.js"></script>
13
14    <script type="text/javascript" src="field-to-grid-dd.js"></script>
15    <script type="text/javascript" src="../code-display.js"></script>
16    <link rel="stylesheet" type="text/css" href="grid-examples.css" />
17
18    <!-- Common Styles for the examples -->
19    <link rel="stylesheet" type="text/css" href="../shared/examples.css" />
20<style type="text/css">
21.x-drop-target-active {
22        background-color: #D88;
23}
24</style>
25</head>
26<body>
27<h1>Using a GridPanel as a DropZone managing each grid cell as a target</h1>
28<p>This example assumes prior knowledge of using a GridPanel.</p>
29<p>This illustrates how a DragZone can manage an arbitrary number of drag sources, and
30how a DropZone can manage an arbitrary number of targets.</p>
31<p>Note that the js is not minified so it is readable. See <a href="field-to-grid-dd.js">field-to-grid-dd.js</a>.</p>
32<div id="grid-example"></div>
33</body>
34</html>
Note: See TracBrowser for help on using the repository browser.