typeString
(default: "text")
Sets type of the input. Can also be set to the following string values:
- "text"
- "number"
- "password"
Example - sets the input type
<input id="otpinput" />
<script>
$("#otpinput").kendoOTPInput({
items: 3,
type: "number"
});
</script>
In this article