refresh

The refresh() method reloads the current instance of the Checkbox widget.
The optional parameter options gives the possibility to extend the initial options with the new ones.

<input id="checkbox" type="checkbox" ></div>

<script type="text/javascript">
    $(function () {
        $("#checkbox").shieldCheckBox({
            label: "checkbox 1",
            enabled: false
        });
    });

    $("#checkbox").swidget().refresh();
</script>