enabled

Indicates whether the NumericTextBox component will be initially in enabled or disabled state. Defaults to true, which makes it enabled.

<input id="numeric" />

<script type="text/javascript">
    $(function () {
        $("#numeric").shieldNumericTextBox({
            min: 0,
            max: 50,
            enabled: false // initially disabled
       });
    });
</script>