I am using this plugin: http://codef0rmer.github.io/angular-dragdrop/#/ for drag and drop purpose. I am unable to drag and drop a table row. Following code only works for individual column. Can anyone help me on this?
<table >
<tr>
<th>title</th>
<th>Category</th>
</tr>
<tr ng-repeat="item in list5" >
<td data-drag="{{item.drag}}" data-jqyoui-options="{revert: 'invalid', helper: 'clone'}" ng-model="list5" jqyoui-draggable="{index: {{$index}},placeholder:true,animate:true}">{{item.title}}</td>
<td data-drag="{{item.drag}}" data-jqyoui-opti`enter code here`ons="{revert: 'invalid'}" ng-model="list5" jqyoui-draggable="{index: {{$index}},placeholder:true,animate:true}">{{item.category}}</td>
</tr>
</table>
I found the solution for my problem at the end of the day and it goes like this: