Prevent nullable input in NumericTextBox

17 Feb 20221 minute to read

By default, the value of the NumericTextBox sets to null. In some applications, the value of the NumericTextBox should not be null at any instance. In such cases, following sample can be used to prevent nullable input in NumericTextBox.

<div id='container'>
    <div class='wrap'>
        <ejs-numerictextbox id="numeric" value="10" placeholder="NumericTextBox" floatLabelType="Always" created="onCreate" blur="onBlur"></ejs-numerictextbox>
    </div>
</div>

<script>
    function onCreate(args) {
        if (this.value == null) {
            this.value = 0;
        }
    }
    function onBlur(args) {
        if (args.value == null) {
            numeric.value = 0;
        }
    }
</script>
public ActionResult nullableInput()
{
    return View();
}

Output be like the below.

NumericTextBox Sample