I cannot input any digit to following RadzenMask:
<RadzenMask Pattern="****" CharacterPattern="[0-9]" />
It does not work in my code as well as in interactive radzen demo:
What am I missing here?
I cannot input any digit to following RadzenMask:
<RadzenMask Pattern="****" CharacterPattern="[0-9]" />
It does not work in my code as well as in interactive radzen demo:
What am I missing here?
Hi @FLAMESpl,
Seems to work just fine when I test the following:
<RadzenMask Mask="****" CharacterPattern="[0-9]" />
<EventConsole />

Check your browser for JS errors and refresh it if there are any.
I see now what I have done wrong: I use pattern property instead of mask. Since mask was zero-length it was not possible to input any character.