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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
| <!DOCTYPE html>
<html lang="fr" manifest="http://danielhagnoul.developpez.com/pageTest.mf">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0">
<meta name="Author" content="Daniel Hagnoul">
<title>Forum jQuery</title>
<link href='http://fonts.googleapis.com/css?family=Sofia|Ubuntu:400|Kreon'>
<link rel="stylesheet" href="http://danielhagnoul.developpez.com/styles/dvjhRemBase.css">
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/themes/overcast/jquery-ui.css">
<style>
/* TEST */
.content, .ctrlLibre, .ctrl {
width: 150px;
height: 250px;
border: 1px solid black;
}
.ctrlLibre li {
list-style-type: none;
background-color: green;
width: 100px;
}
.ctrl li {
list-style-type: none;
background-color: red;
width: 100px;
}
.content li {
list-style-type: none;
background-color: orange;
width: 100px;
}
</style>
</head>
<body>
<header>
<hgroup>
<h1>Forum jQuery</h1>
<h2>Titre 2</h2>
</hgroup>
</header>
<section class="conteneur">
<table>
<tbody>
<tr>
<td>
<ul class="ctrlLibre connectedSortable" data-type="1">
<li data-type="1">CTRL LIBRE 1</li>
<li data-type="1">CTRL LIBRE 2</li>
</ul>
</td>
<td>
<ul class="ctrl connectedSortable" data-type="2">
<li data-type="2">CTRL 1</li>
<li data-type="2">CTRL 2</li>
<li data-type="2">CTRL 3</li>
</ul>
</td>
<td>
<ul class="content connectedSortable" data-type="3">
<li data-type="3">a</li>
<li data-type="3">b</li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<footer itemscope itemtype="http://danielhagnoul.developpez.com/">
<time datetime="2013-01-16T23:53:35.906+01:00" pubdate>2013-01-16T23:53:35.906+01:00</time>
<span itemprop="name">Daniel Hagnoul</span>
<a href="http://www.developpez.net/forums/u285162/danielhagnoul/" itemprop="url">@danielhagnoul</a>
<a href="http://danielhagnoul.developpez.com/" itemprop="url">Mon cahier dexercices</a>
<a href="http://javascript.developpez.com/faq/jquery/" itemprop="url">FAQ</a>
<a href="http://javascript.developpez.com/cours/?page=frameworks#jquery" itemprop="url">Tutoriels</a>
</footer>
<script src="http://danielhagnoul.developpez.com/lib/raphael-min.js"></script>
<script src="http://code.jquery.com/jquery-1.9.0.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/i18n/jquery-ui-i18n.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
<script charset="utf-8" src="http://danielhagnoul.developpez.com/lib/dvjh/base.js"></script>
<script>
"use strict";
$(function(){
$( ".ctrlLibre, .ctrl, .content" ).sortable({
connectWith: ".connectedSortable",
receive : function( event, ui ){
var cibleType = $( event.target ).data( "type" ),
elemType = $( ui.item ).data( "type" );
if ( cibleType != 3 && cibleType != elemType ){
// debug
//console.log( "erreur", cibleType, elemType );
$( ui.sender ).sortable( "cancel" );
}
}
}).disableSelection();
});
$(window).load(function(){
});
</script>
</body>
</html> |
Partager