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 found confusing that NumeralFieldFormatter cannot extend a NumberField vaadin component.
I would like to be able to extend a number field using the NumeralFieldFormatter.
It's annoying to parse always the values from String to Double and vice-versa 😢
NumberField priceField = new NumberField("Price");
Please add such functionality
new NumeralFieldFormatter.Builder()
.delimiter(",")
.decimalMark(".")
.decimalScale(2)
.build()
.extend(priceField); // Currently, it's not possible to extend a number field
The text was updated successfully, but these errors were encountered:
I found confusing that
NumeralFieldFormatter
cannot extend aNumberField
vaadin component.I would like to be able to extend a number field using the
NumeralFieldFormatter
.It's annoying to parse always the values from String to Double and vice-versa 😢
Please add such functionality
The text was updated successfully, but these errors were encountered: