Hi, I'm working with connected sortable lists and need the ability to add an extra list, but it just doesn't work.
I have an XHTML like this:
<div id="content">
<div class="line">
<span class="element">1</span>
<span class="element">2</span>
<span class="element">3</span>
</div>
<div class="line">
<span class="element">4</span>
<span class="element">5</span>
<span class="element">6</span>
</div>
</div>
where elements must be sortable, and the user hast to be able to change them from one .line to the other. But when sorting, an empty extra line must be added, in case the user wants to place an element in a new line.
I tried adding a div.line to div#content, but elements cannot be dropped there.
Any idea?
Thanks!