Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML 5 input type "number" with step="any" => No decimal separator on Chrome Soft-Keyboard

I would like to have a HTML 5 Input Element like:

<input type="number" step="any" value="3.5"/>

This works fine on my iPhone Safari Browser but not on Chrome for Android. It shows the right Soft-Keyboard, but not the decimal separator. So I'm not able to enter any decimal places.

Are there e.g. any JavaScript tweaks that make the chrome browser show the right keyboard?

Because it feels like a bug: Can someone point me to the Chrome for Android Issue Tracker to open up a case for this?

like image 923
Dirk Avatar asked Jan 10 '13 19:01

Dirk


1 Answers

I got the same problem and came accross this link: Google Chrome on Android (and only Android) Does not allow Decimal with type number and step="any"

I have not yet tested on a iDevice, but i got the problem on my Samsung Galaxy SIII.

like image 89
jakobdo Avatar answered Nov 11 '22 14:11

jakobdo