getPath

Returns the path for the given node. Accepts a jQuery object, DOM Element or a path identifying the node.

<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 ($) {
        var treeview = $("#treeview").shieldTreeView().swidget();

        // prints [0, 0]
        console.log(treeview.getPath($("#someid")));
    });
</script>