Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Ticket #10756 (new defect)

Opened 4 months ago

bug Ajax.InPlaceEditor with I.E. 6 and I.E. 7

Reported by: gilou Assigned to: madrobby
Priority: normal Milestone: 2.x
Component: script.aculo.us Version: edge
Severity: major Keywords:
Cc:

Description

When i use draggable and droppable objects i get several ghost div when i move the draggable div and i can't stop the process.

But that works fine on Safari 3 (Mac OS x 10.4.11) and on Firefox 2.0.11 (Windows XP SP2).

Thanks a lot.

Gil

	<!-- draggable div -->
        <div class='calqueImagette' id='calqueimgSurflet'>	\
	   <a id='img1' href='#' ondblclick='...'>\
	     <img class='imgDraggable' id='imagette' src='img.gif' />\
	   </a>\
	</div>\



	new Draggable("imagette",
	    {
	        revert: true,
	        ghosting : true,
		scroll: window
	    }
	);

	<!-- droppable div -->

	Droppables.add( "recept",
	{
		accept: 'imgDraggable',
		onDrop: function(_element) {
	            createElement(param);
		}
	}
	);