I'm trying to use the sfMaskedEdit box but I'm finding the documentation lacking. I want my text box to only accept numbers and a comma so the following can be entered:
- 1
- 1122123,13132,541324
- 1,1,2,7
- etc...
I tried something like
<syncfusion:SfMaskedEdit x:Name="FieldTeamTextBox"
Grid.Column="1"
MaskType="RegEx"
Mask="[0-9]+(,[0-9]+)*"
FontSize="14" TextAlignment="Center" Margin="10,5"
Grid.Row="1"
Text="{Binding FieldTeamText, Mode=TwoWay}"/>
But all it lets me do is put it one number and then the invalid red popup occurs. The regex works on regexpal.com .
Also, it sometimes causes the app to crash when I hit the backspace while editing the textbox. Could the documentation be updated with more in depth examples of accepted regexs?