JavaScript RadioButtonSettings

The RadioButton widget is initialized with the shieldRadioButton constructor, passing it a dictionary of settings as shown below:

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

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

Details about all configuration settings can be found below.