Completed
Last Updated: 02 Dec 2021 12:07 by ADMIN
Created by: Imported User
Comments: 0
Category: MaskedTextBox
Type: Feature Request
4
The read-only property available on most kendo input fields isn't obvious enough for the end user that a field is disabled. It is a source of confusion as it makes the form look broken rather than read-only. Adding k-state-disabled is important from a form readability perspective, thus it would be very helpful if that class was made available on dropdown lists and masked textboxes so they match the textboxes on forms without having to selectively apply additonal CSS.
Completed
Last Updated: 01 Oct 2021 14:12 by ADMIN
Instead of only supporting single character masks, I suggest support be added for group masks.

Example:

$("#time").kendoMaskedTextBox({
     mask: "HH:MM TT",
     rules: {
               "HH" : /^(([0]?[1-9])|([1][0-2]))/,
               "MM": /(([0-5][0-9])|([1-9]))/,
               "TT": /[AaPp][Mm]$/
     }
});

or

$("#time").kendoMaskedTextBox({
     mask: "t",
     rules: {
               "t" : /^(([0]?[1-9])|([1][0-2])):(([0-5][0-9])|([1-9])) [AaPp][Mm]$/
     }
});
Completed
Last Updated: 22 Jul 2021 10:11 by ADMIN
Created by: Imported User
Comments: 1
Category: MaskedTextBox
Type: Feature Request
3
Method to modify mask in MaskedTextbox
Completed
Last Updated: 23 Jun 2017 11:15 by ADMIN
Created by: Gal
Comments: 3
Category: MaskedTextBox
Type: Feature Request
7
Date/DateTime/Time pickers need to have a mask automaticly for the date format entered currently users need to type the "/" instead of a mask "__/__/____"  like in telerik ajax. 
I know there is this link 

http://docs.telerik.com/kendo-ui/aspnet-mvc/helpers/datepicker/how-to/masked-date-picker-grid

With a solution but this is a workaround and not a built in solution supported by telerik.