I have not found any kind of masked input support for KendoUI is there anything planned for a future release? Can I have access to a preview version?
Is there a masked textbox for Kendo-UI
5.1k Views Asked by orellabac At
2
There are 2 best solutions below
1
On
From release 2014.1.321 there are masked input. The name of the widget is kendoMaskedTextBox and the documentation can be found here.
Some examples on how to use can be found on their demo page and is as simple as:
Phone number:
<input id="phone_number" value="555 123 4567"/>
$("#phone_number").kendoMaskedTextBox({
mask: "(999) 000-0000"
});
Credit card:
<input id="credit_card" value="1234 1234 1234 1234"/>
$("#credit_card").kendoMaskedTextBox({
mask: "0000 0000 0000 0000"
});
The mask definition syntax is:

No, it does not exist yet
Please everyone add your votes!!!
Update:
Update 2: Documentation Link!