Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, 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!

0
Votes

  When using NumericTextBox in a reactive form with format: 'n0' (integer) and validateDecimalOnType: true, pasting a decimal value like 1.1 results in the input rejecting it visually, but the underlying FormControl still retains the invalid value (1.1). This leads to inconsistencies between the UI and form model.

Replication Procedure:

  • Run the sample
  • Paste an invalid decimal (e.g., 1.1) into the input.
  • You can see the console

Expected Output:The form control should reset to the last valid value or be cleared, matching the input field.

Current Output:  Input reverts visually, but form control still holds 1.1.