Link to home
Start Free TrialLog in
Avatar of James Rodgers
James RodgersFlag for Canada

asked on

Drag and Drop - Table with Data

I have a db query which outputs a photogallery for editing, the daat is inserted into a table with the following layout

IMAGE
IMAGE_NAME (text input)
IMAGE_NAME_FR (text input)
IMAGE_CAPTION (text input)
IMAGE_CAPTION_FR (text input)

pus a couple of hidden fields, the table is floated to the left and each entry in the gallery generates a table and floats it up against the previously generated table, i now need to add a sorting option(new requirement), i would like to implement it as a drag and drop that would store the resequenced tables in an array which i could then submit with the text edits to reorganize the image display sequence any script suggestions? code samples?


TIA
ASKER CERTIFIED SOLUTION
Avatar of majkiw
majkiw

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of majkiw
majkiw

Of course, ids have to match. It should have been:
Sortable.create("my_sorted_list");
Sortable.serialize("my_sorted_list");
Do you need any further assistance with that?
Avatar of James Rodgers

ASKER

not complete