organizer.html 1.1 KB

123456789101112131415161718192021222324
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Image Organizer Example</title>
  5. <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
  6. <link rel="stylesheet" type="text/css" href="organizer.css" />
  7. <link rel="stylesheet" type="text/css" href="../shared/example.css" />
  8. <link rel="stylesheet" type="text/css" href="../ux/DataView/DragSelector.css" />
  9. <!-- GC -->
  10. <script type="text/javascript" src="../../ext-all.js"></script>
  11. <script type="text/javascript" src="organizer.js"></script>
  12. </head>
  13. <body>
  14. <h1>Organizing Images into Albums</h1>
  15. <p>This example shows demonstrates how you can drop anything into the tree.</p>
  16. <p>This example also shows how a customized DragZone can be
  17. applied to a JsonView to get automatic lightweight drag and drop of asynchronously loaded data.</p>
  18. <p>The js is not minified so it is readable. See <a href="organizer.js">organizer.js</a>. The multi image drag drop added a little complexity to the code, but hopefully it is still easy to follow.</p>
  19. </body>
  20. </html>