refresh

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

<input id="radiobutton" type="radio" ></div>

<script type="text/javascript">
    $(function () {
        $("#radiobutton").shieldRadioButton({
            label: "radiobutton 1",
            enabled: true
        });
    });

    $("#radiobutton").swidget().refresh();

</script>