I'm using the angularjs directive http://marceljuenemann.github.io/angular-drag-and-drop-lists/ to drag & drop things over the page.
I don't know if this is the best for what I need.
I've reproduce the demo
http://marceljuenemann.github.io/angular-drag-and-drop-lists/demo/#/nested
in a fiddle
http://jsfiddle.net/5yogbajq/16/
What I need is to add more columns on the container. I've added the 13th item and it goes to bottom and right. What I need is this one goes in the same row as Item 9 and Item 12, on the right. Something like:
<tr>
<td>item 9</td>
<td>item 12</td>
<td>item 13</td>
</tr>
Any help will be appreciatte.
Thanks in advance.