Big decimal text field error on iOS

Hi Guys,

has anyone tried uaing big decimal textfield with ios. I am not able to add in decimal vales.
18310943.jpeg

Hello,

confirmed the issue, the internal <input> field of BigDecimalField has inputmode="numeric" while it should be inputmode="decimal". Can you file an issue about this at: https://github.com/vaadin/vaadin-text-field-flow/issues/new

Workaround:
bigDecimalField.getElement().executeJs("this.focusElement.setAttribute('inputmode', 'decimal')");

Fix in https://github.com/vaadin/vaadin-text-field-flow/pull/324

Hi Tomi,

thanks for fixed!