dataBound

The dataBound event is fired after a TreeView node's children items have been loaded either from a remote or a local data source.

The following additional properties are set to the event object:
- element - the element whose children have been loaded. In case this is the top-level list of items, this will have a value of null;
- dataSource - the DataSource object containing the items.

<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({
            events: {
                dataBound: function(e) {
                    // items loaded and rendered ...
                }
            }
        });
    });
</script>