disabledTemplate

The template string or function for the disabled state of a TreeView item.

<script type="text/javascript">
    jQuery(function ($) {
        $("#treeview").shieldTreeView({
            dataSource: {
                data: [
                    { text: "Item One", disabled: true },
                    { text: "Item Two" }
                ]
            },
            disabledTemplate: "{disabled}"
        });
    });
</script>