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

Currently while editing on the double text box, with the Min/Max number decimal digits. The NumberDecimalDigit property is updated based on the edited text. Therefore, while select all the text and editing the double text box with minimum number decimal digit as 0 and maximum number decimal digit as 6. It shows the trailing zero's after the decimal digits based on the updated NumberDecimalDigits. 

The trailing zero's should not update based on the edited input values, It should be applied based on the Minimum and Maximum number decimal digits. 


Case 1:

1. Run the attached sample

2. Write: "123,2"

3. Press CTRL + A

4. Press "2" - "2,0" should appear

5. Press ','

6. Press 23 - "2,23" should appear

7. Press CTRL + A again

8. Press "2" - > "2,0" should appear

9. Press ",", then for example 5 - "2,50" appears instead of "2,5", it seems that the trailing zero is 'pushed'.


Case 2:

1. Run the attached sample - write "123,123"

2. press CTRL + A

3. Write "12" - instead of "12", "12,000" appears


Case 3:

1. Run the attached sample - write "123,123"

2. press CTRL + A

3. Write "12" - instead of "12", "12,000" appears

4. Press ',' or '.' - > the trailing zeroes are gone except one zero.

5. Press 56 - > you get 12,560 -> meaning the one zero didn't remove after typing new numbers.