Skip to content Skip to sidebar Skip to footer

What Models Of Samsung Smartphones Have Missing Period For Html5 Input Type="number"?

HTML5 has a new input type named 'number'. On most mobile smartphones this brings up a numeric keypad. On pre-html5 phones the type falls back to 'text' and we are OK. Yet, on some

Solution 1:

It turns out to be all SAMSUNG with 4.x as well as HTC with 4.4 and reports of other vendors (Xperia). Long story short, at least put in the fix for anything with User-Agent having SAMSUNG or HTC and running 4.x; but possibly put in the fix for anything having ANDROID.

Solution 2:

I have discovered a work around for this problem. It works for my Samsung Galaxy S2 phone and I suspect it will work for all Samsung devices that suffer from the "missing decimal point" problem on the numeric keyboard. Hopefully others with different Samsung devices can check this solution and report their findings.

Unfortunately, it is a client based (phone owner) solution so it does not really help from a web developer standpoint. Here is the solution that worked for me:

  1. While in the browser click on the menu icon (bottom left of phone)
  2. Select Settings
  3. Select Privacy and Security
  4. Scroll down and uncheck "Remember Form Data" and select "Clear Form Data"
  5. Click OK to confirm

After following this procedure, the numeric keypad should show an extra button labelled .- That is, the same button is used for both minus signs and decimal points. Double-click this button to get a minus sign (provided the field is currently empty) and single click to get a decimal point.

Post a Comment for "What Models Of Samsung Smartphones Have Missing Period For Html5 Input Type="number"?"