Does anyone know how to get a Kendo Numeric TextBox to display asterisks as the user types them in? type="password"
does not work. Thanks.
Here is my code:
<input type="password" id="login_screen_password" data-bind="value: login_screen_password" />
$('#login_screen_password').width(100).kendoNumericTextBox({
format: "#",
min: 1111,
max: 9999,
spinners: false
});
$('#login_screen_password').attr('maxlength', '4'); // limit length of numbers inputted