You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a text field that uses Numeral. When the user types, everything works perfectly.
When I try to programmatically put a value, the formatting is not done.
What's the secret for it to correct the formatting after I set a value?
Example:
TextField textTest= new TextField("Test");
new NumeralFieldFormatter(".", ",", 3).extend(textTest);
//If I set a value:
textTest.setValue("1234.4");
It's not formatted, it's only if the user modifies anything.
I use in Vaadin 23.
The text was updated successfully, but these errors were encountered:
I have a text field that uses Numeral. When the user types, everything works perfectly.
When I try to programmatically put a value, the formatting is not done.
What's the secret for it to correct the formatting after I set a value?
Example:
It's not formatted, it's only if the user modifies anything.
I use in Vaadin 23.
The text was updated successfully, but these errors were encountered: