jQuery TreeView Setup

In order to render the TreeView JavaScript widget on a webpage, you need to:

1. Include references to all required scripts. Make sure you include the CSS file for your preferred theme.
2. Add an empty DIV element or a UL element, containing the tree nodes.
3. Initialize the widget.

<!DOCTYPE html>
<html>
<head>
<title>ShieldUI Tabs</title>
<meta charset="utf-8" />

<link rel="stylesheet" type="text/css" href="css/light/all.min.css" />
<script src="js/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="js/shieldui-all.min.js" type="text/javascript"></script>

</head>
<body>

<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">
    $(function () {
        $("#treeview").shieldTreeView({
            checkboxes: {
                enabled: true,
                children: true
            },
            dragDrop: true
        });
    });
</script>

</body>
</html>

To see an example of the control in action, along with all the required code, please refer to the following example.