Radzen Mask does not accept input

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 />

mask
Check your browser for JS errors and refresh it if there are any.

1 Like

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.