value String(default: "")

The value of the widget.

Example - specify value of the widget

Open In Dojo
<input id="otpinput" />
<script>
    $("#otpinput").kendoOTPInput({
        items: 3,
        value: "123"
    });
</script>
In this article