blur

Fired when the user focus moves out of the NumericTextBox widget - e.g. when clicking on a different item.

<input id="number" />
<script type="text/javascript">
    $("#number").shieldNumericTextBox({
        textTemplate: "{0:p}",
        min: -1,
        max: 1,
        step: 0.01,
        value: 0.5,
        events: {
            focus: function() {
                console.log("Control has received the user focus");
            },
            blur: function() {
                console.log("Control has lost the user focus");
            },
            change: function(event) {
                console.log("Control value changed to: " + event.value);
            }
        }
    });
</script>