Hi Guys,
has anyone tried uaing big decimal textfield with ios. I am not able to add in decimal vales.

Hi Guys,
has anyone tried uaing big decimal textfield with ios. I am not able to add in decimal vales.

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')");
Hi Tomi,
thanks for fixed!