placeholder String (default: "")

The hint displayed by the widget when the inputs are empty. Not set by default.

Example - specify placeholder

Open In Dojo
<input id="otpInput" />
<script>
    $("#otpInput").kendoOTPInput({
        items: 3,
        type: "number",
        placeholder: "0-9"
    });
</script>
In this article