1

Is this possible to make item from a autocomplete jquery box draggable ?

example : drag an item from one list to another (selecting mp3 files names from one div and drop into another (play list)

1 Answers1

3

It is possible, what you have to do is append the draggable after the items are created when someone starts typing. One way I did this was by adding the open event (sees when the autocomplete box is opened) and then I select the ui-menu-items that are created by autocomplete and I make them draggable. An example can be found here:

http://jsfiddle.net/2SYXT/

Paul Graffam
  • 2,139
  • 2
  • 18
  • 20