You need to create an input mask only for Russian characters + space + dot + comma. I do not understand how to specify what exactly Russian letters are.
@Html.Kendo().MaskedTextBox().Name("FIO").Mask( You need to create an input mask only for Russian characters + space + dot + comma. I do not understand how to specify what exactly Russian letters are.
@Html.Kendo().MaskedTextBox().Name("FIO").Mask( Source: https://ru.stackoverflow.com/questions/626142/
All Articles
@Html.Kendo().MaskedTextBox().Name("Fio").Rules(rules => rules.Add('~', @"\u0400-\u04FF")).Mask("~")This is only for Russian symlov. - Anton Komyshan