Hello, I am having some issues with TreeView that I need help resolving:
Issue #1:
Below code works, and sprites show up, until you drag an item. After that <span> tags get stripped.
Issue #2:
When moving last item from one TreeView to another, it is impossible to drag anything back.
How do i fix this??
Issue #1:
Below code works, and sprites show up, until you drag an item. After that <span> tags get stripped.
<ul id="hosts"> <li id="host1"><span class="maas-sprite server"></span>host1</li> <li id="host2"><span class="maas-sprite server"></span>host2</li> <li id="host3"><span class="maas-sprite server"></span>host3</li></ul> $('#hosts').kendoTreeView({ dragAndDrop: true,});Issue #2:
When moving last item from one TreeView to another, it is impossible to drag anything back.
How do i fix this??