Hello,
I am trying to customize the masked textbox to have the user specify a date/time format in dd.MM.yy - HH:mm. Currently, I am using the following code:
<syncfusion:SfMaskedEdit
Mask="^(0[1-9]|[12][0-9]|3[01])[.](0[1-9]|1[012])[.]\d\d - ([01][0-9]|2[0-3]):[0-5][0-9]$"
Watermark="DD.MM.YY - HH:MM"
PromptChar="_"
MaskType="RegEx"/>
Unfortunately, this does not allow any input at all. What am I doing wrong?