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?
Asked
Active
Viewed 5,081 times
2
-
2You should be able to achieve masked input with a jquery plug-in (for example http://digitalbush.com/projects/masked-input-plugin/) – Mike Cheel Jan 15 '14 at 22:42
2 Answers
5
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:

OnaBai
- 40,767
- 6
- 96
- 125
-
Thanks for reply. But maskedtextbox loses its value after post the view to the controller. How to fix it? – Jack Feb 23 '15 at 10:20
2
UNDER REVIEW · Kenshin, Kendo UI Team
ADMIN
Kenshin, Kendo UI Team (Admin, Kendo UI) responded · Nov 22, 2011
Masked input widget will be contemplated for the future versions of Kendo UI.
Please everyone add your votes!!!
Update:
ADMIN Kenshin, Kendo UI Team (Admin, Telerik Kendo UI) responded · March 20, 2014 Masked textbox widget is included in Q1 2014.
Update 2: Documentation Link!

felickz
- 4,292
- 3
- 33
- 37