When the delete keyboard is hold, it only erase one character. Would be great deletes all content while user hold the delete key, like happends in this demo https://docs.telerik.com/kendo-ui/api/javascript/ui/maskedtextbox/configuration/mask.
Thank you.
We are heavily relying on the use of RegEx masks and the MaskAutoComplete functionality in the Telerik Silverlight components. Currently we are completly rebuilding out application with Telerik Angular 2+ so we are missing this functionality.
For instance what we are trying to achieve is:
- force First letter upper case in lastname after every space in the name. (Silverlight --> Mask="([A-Z]\.)+" MaskType="RegEx" MaskAutoComplete="Optimistic")
- initials all uppercase and automaticly place a . after every letter (Silverlight --> Mask="([A-Z][a-z]+)((\s|\-)[A-Z][a-z]+)*" MaskType="RegEx" MaskAutoComplete="Optimistic")
If there is another way to achieve this in Angular 2+ with the current components that is also fine but I cannot find a way in the documentation.