spinners

Controls whether to show the increment/decrement spinners for the NumericTextBox or not.
If no spinners are shown, changing the value can still be done using UP and DOWN arrows and through the public methods.
Defaults to true.

<input id="numeric" />

<script type="text/javascript">
    $(function () {
        $("#numeric").shieldNumericTextBox({
            min: 100,
            max: 1000,
            spinners: false // hides the spinners
       });
    });
</script>