Thread CGI-Skript mit Drag & Drop Funktion (6 answers)
Opened by kimmy at 2010-12-14 17:19

GwenDragon
 2010-12-14 18:28
#143567 #143567
User since
2005-01-17
14785 Artikel
Admin1
[Homepage]
user image
//EDIT: Es geht wohl um das Javascript custom drag and drop script

Um mal ins Blaue zu fragen:
Wo sendet denn dein Javascript Werte an den Server?

//EDIT2:
Da hat jemand einfach mal kopiert und nicht die (schlechte) Doku zum Javascript gelesen:
Quote
addTarget

Assign action to an element when a dragable item is dropped on it.
id of element and
name of function(example: "dropItems") which would be called when an item is dropped on the drop zone. This function would be called with the following arguments:
id of dragged element
id of the element the item was dropped on.
mouse x coordinate when item was dropped
mouse y coordinate when item was dropped


Du musst mit Javascript in der Funktion dropItems eben Daten in deine Formularfelder eintragen und dann an den Server senden. Meinetwegen auch mit AJAX (XMLHttpRequest) im Hintergrund.

//EDIT3:
Du weißt wie das geht oder hast du gar keine Ahnung von CGI und Javascript?

Ansonsten lass das antiquierte Zeug von dhtmlgoodies und teste mal was modernes wie jQuery wo du keine seltsamen Verdrehungen machen musst:
http://jqueryui.com/demos/droppable/
und noch andere Drag&Drop-Plugins unter http://plugins.jquery.com/projects/plugins/drag-an...
Last edited: 2010-12-14 19:13:34 +0100 (CET)

View full thread CGI-Skript mit Drag & Drop Funktion