Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
When removing characters from a masked textbox using backspace, when the character before the current cursor position is a literal from the mask, the current behaviour is to move the cursor back over the control literal(s). i.e.:
mask: "00-00" value: "12-34"
cursor position before: "12-ˇ34"
cursor position after backspace: "12ˇ-34"
with consecutive literals in the mask:
mask: "00--00" value: "12--34"
cursor position before: "12--ˇ34"
cursor position after backspace: "12ˇ--34"
I find would it more intuitive for the literal character to be skipped over like it is not part of the input, as in:
cursor position before: "12-ˇ34"
cursor position after backspace: "1ˇ_-34"
cursor position before: "12--ˇ34"
cursor position after backspace: "1ˇ_--34"