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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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:

mask: "00-00" value: "12-34"

cursor position before: "12-ˇ34"

cursor position after backspace: "1ˇ_-34"


mask: "00--00" value: "12--34" 

cursor position before: "12--ˇ34"

cursor position after backspace: "1ˇ_--34"