dragDrop

Enables drag and drop functionality for the TreeView.
Defaults to false.

<ul id="treeview">
    <li>My Project
        <ul>
            <li id="someid">js</li>
            <li>css</li>
        </ul>
        <li>index.html<li>
        <li>upload.php<li>
    </li>
</ul>

<script type="text/javascript">
    jQuery(function ($) {
        $("#treeview").shieldTreeView({
            dragDrop: true,
            events: {
                drop: function(e) {
                    console.log("dropping " + this.getPath(e.sourceNode) + 
                        " on " + this.getPath(e.targetNode));
                }
            }
        });
    });
</script>

Check this example for a live demo of TreeView drag-and-drop.