Bonjour,

voici ma problematique

Mon objectif:

Lors du démarrage du drag and drop, je voudrais choisir les zone de drop authorisées. voir en deactiver

Actuellement, au depart la zone amulette est initialisé comme droppable.

le process drag and drop est ok

2eme essais

Dans la fonction dragstart j'essaye de rendre dynamiquement la zone collier droppable, echec.

le collier.addEventListener(ondrop...) semble pas fonctionner.

quelqu'un aurait-il la solution? je coince

Mon code:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE HTML>
<html>
<head>
<title>TEST </title>
 
<style type="text/css">
 
.nomobj { margin: auto; }
 
</style>
 
<script type="text/javascript">
	function allowDrop(ev)	{
		ev.preventDefault();
		document.getElementById('Amulette').style ="border: 1px solid green";
 
	}
	function drag_enter(ev) {
		document.getElementById('Amulette').style ="border: 1px solid yellow";
	}
 
	function drag_out(ev) {
		document.getElementById('Amulette').style ="border: 1px solid pink";
	}	
 
	function dragstart(ev)	{
	//alert("start"+ev.target.id);
		//TODO spleet et condition sur la destination
		//faire le allow drp via la contition
		//CF attachEvent document.getElementById('Amulette').attachEvent("ondrop",drop(event) )
		ev.dataTransfer.setData("test/plain",ev.target.id);
		document.getElementById('Amulette').style ="border: 1px solid blue";
		var collier = document.getElementById("Collier");
		if (collier.addEventListener) {
			collier.addEventListener("ondrop",drop );
			collier.addEventListener("ondragover",allowDrop );
			collier.addEventListener("ondragenter",drag_enter );
			collier.addEventListener("ondragleave",drag_out );
		}
		ev.dataTransfer.dropEffect='move';
		//document.getElementById('Collier').style ="border: 1px solid blue";
 
	}
 
	function drop(ev)	{
		ev.preventDefault();
		document.getElementById('Amulette').style ="border: 1px dashed #2C2C2C;";
		var data=ev.dataTransfer.getData("test/plain");
		//this.appendChild(document.getElementById(data));
		ev.target.appendChild(document.getElementById(data));
		// ok id de l'objet dans data 
		alert(data);
		//Faire le diseable de la zone
		//document.getElementById('Amulette').removeAttribute("draggable");
	}
</script>
</head>
 
<body>
Porte
			<table>
                <tr>
					<td>
					</td>
					<td>
					    <div class="objects" id="Amulette1" style="border: 2px solid black;">
                            <h5>Amulette</h5>
 
 
                            <div id="Amulette" class="image-object"
								ondrop="drop(event)" 
								ondragover="allowDrop(event)"
								ondragenter="drag_enter(event)"
								ondragleave="drag_out(event)"								
							>
 
                            </div>
 
                        </div>
						</td>
						<td>
						<div class="objects" id="Collier1" style="border: 2px solid black;">
                            <h5>Collier</h5>
 
 
                            <div id="Collier" class="image-object"
 
							>
 
                            </div>
 
                        </div>
					</td>
				</tr>
			</table>
 
			Sac
	<table>
		<tr>
							<td>
					<div class="objects" style="border: 2px solid black;"  
						id="sac0" 
 
					>
						<h5>0</h5>
						<div class="image-object">
						<div draggable="true" ondragstart="dragstart(event)" id="109824_" 
 
						>
						<a onclick="window.open('http://URL/php/obj.php?obj=109824&amp;src=fiche','Glad','toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=1, copyhistory=0, menuBar=0, width=450, height=600');return(false);" href="#">								
							<img src="http://URL/IMAGES/obj/anneau_3.jpg" 
								width="80" height="60"
								alt=".."
							/>
						</a>
						<p class="nomobj">Bague</p>
 
 
						</div>
						</div>
					</div>
				</td>
							<td>
					<div class="objects" style="border: 2px solid black;"  
						id="sac1" 
 
					>
						<h5>1</h5>
						<div class="image-object">
						<div draggable="true" ondragstart="dragstart(event)" id="179638_" 
 
						>
						<a onclick="window.open('http://URL/php/obj.php?obj=179638&amp;src=fiche','Glad','toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=1, copyhistory=0, menuBar=0, width=450, height=600');return(false);" href="#">								
							<img src="http://URL/IMAGES/obj/collier_bleu.jpg" 
								width="80" height="60"
								alt=".."
							/>
						</a>
						<p class="nomobj">Collier</p>
 
 
						</div>
						</div>
					</div>
				</td>
					</tr>
	</table>
 
</body>
</html>