Nested ng re-drag & drop, AngularJS

Is there a built-in dragdrop solution for AngularJS that can handle drag and drop between nested ng repeats?

What the current html looks like:

<section ng-repeat="list in lists">
   {{ list.name }}
   <article ng-repeat="user in list.users">
     {{ user.name }}
   </article>
</section>

I am trying to ensure that I can move users to other lists.

I do not want to add jQuery UI as a dependency for just drag and drop.

+3
source share
3 answers

I had the same problem and wanted to use my own HTML5. Since I could not find anything, in the end I had to create my own library, check the results:

http://marceljuenemann.imtqy.com/angular-drag-and-drop-lists/demo/#/nested

+2
source

Angular-NestedSortable is really useful for this case.

0
source

All Articles