Здравствуйте. Подскажите как для TextBox задать маску ввода. Нужно чтобы в поле можно было вводить только цифры в формате телефона. Я хочу сделать маску для этого текстового поля в формате +7 (999) 999-99-99.
Как это сделать? Или есть расширение позволяющее так сделать?
You should not need an extension for this, if you use the textbox changed event to track how many digits have been entered so far and force them into your mask.
I unfortunately can't code for a few hours.
Edit - I coded this in blocks, but it came out slow (multi-second per key stroke) and contradictory to how I thought the text changed event should work.
I take back my recommendation to try this in blocks, and throw it up to the extension developers.
These draggable blocks allow use of the tab character to hop to the next part of the mask, and they depend on the numeric input text boxes having their Hints initialized with masks (9,99,999,...) to guide the user and to support changing the background color of mask parts with the wrong length.
Adjusting the widths of these mask parts was a pain in the neck. I am thinking of a way to do this with only one textbox sandwiched between two Buttons, but that is for a later post.