Sha256: 7ecec454dc6e6d5f89d11f23fe1acf19c44cdfc73ae04179f8bb2c2f2c41ac81

Contents?: true

Size: 1.71 KB

Versions: 7

Compression:

Stored size: 1.71 KB

Contents

<style>
	#test {
		position: relative;
	}
	.box {
		width: 50px;
		height: 50px;
		background-color: #900;
		border: 2px solid #fff;
		padding: 5px;
		margin: 7px;
		color:#fff;
	}
	.fixed{
		border: 1px solid red;
		height: 220px;
		position: fixed;
		left: 500px;
		width: 260px;
	}
	.container {
		width: 150px;
		height: 150px;
		border: 4px solid black;
		background: #ccc;
		padding: 6px;
		margin: 9px;
	}
	.container.fixed{
		left: 800px;
	}
</style>

<div id="togglers"><a id="enable">enable drag</a> | <a id="disable">disable drag</a></div>
<h3 class="h3_test">Drag and Drop to a container</h3>
<p>You should be able to drag red the box around and drop it into one of the containers. The fixed containers should still accept drops when page is scrolled down.</p>
<div id="test">

	<div id="a" class="container">
		<p></p>
	</div>

	<div id="b" class="container fixed">
		<p></p>
	</div>

	<div class="fixed">
		<div id="c" class="container">
			<p></p>
		</div>
	</div>

	<div id="box" class="box">
		<p></p>
	</div>
</div>


<script src="/depender/build?require=More/Drag.Move"></script>
<script>

var dragger = $('box').makeDraggable({
	droppables: '.container',
	onDrop: function(element, droppable){
		if (droppable) droppable.getElement('p').set('text','onDrop');
		element.getElement('p').set('text', 'onDrop');
	},
	onEnter: function(element, droppable){
		droppable.getElement('p').set('text','onEnter');
	},
	onLeave: function(element, droppable){
		droppable.getElement('p').set('text','onLeave');
	},
	onStart: function(element){
		$('test').getElements('p').set('text','');
	}
});

$('enable').addEvent('click', function(){
	dragger.attach();
});
$('disable').addEvent('click', function(){
	dragger.detach();
});

</script>


Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
lsd_rails-0.1.6 Packages/mootools-more/Tests/Interactive/Drag/Drag.Move_(droppables).html
lsd_rails-0.1.5 Packages/mootools-more/Tests/Interactive/Drag/Drag.Move_(droppables).html
lsd_rails-0.1.4 Packages/mootools-more/Tests/Interactive/Drag/Drag.Move_(droppables).html
lsd_rails-0.1.3 Packages/mootools-more/Tests/Interactive/Drag/Drag.Move_(droppables).html
lsd_rails-0.1.2 Packages/mootools-more/Tests/Interactive/Drag/Drag.Move_(droppables).html
lsd_rails-0.1.1 Packages/mootools-more/Tests/Interactive/Drag/Drag.Move_(droppables).html
lsd_rails-0.1 Packages/mootools-more/Tests/Interactive/Drag/Drag.Move_(droppables).html