Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome auto formats input=number

I have a web application where I'm specifying an input field to be a number using the HTML5 property type="number".

<input type="number" value="123456" /> 

By specifying the type, Chrome automatically formats the value to include a comma (123,456). In other browsers it does not format the number, but it also does not prevent non-numeric characters.

In this case, I don't want the comma to be added. Is there any way to turn off localized formatting?

like image 476
Donovan Woodside Avatar asked Mar 17 '11 20:03

Donovan Woodside


People also ask

How do I allow only input field numbers?

By default, HTML 5 input field has attribute type=”number” that is used to get input in numeric format. Now forcing input field type=”text” to accept numeric values only by using Javascript or jQuery. You can also set type=”tel” attribute in the input field that will popup numeric keyboard on mobile devices.

Why does input type number allow E?

HTML input number type allows "e/E" because "e" stands for exponential which is a numeric symbol. Example 200000 can also be written as 2e5.


2 Answers

This is occurring because of the behavior associated with the HTML5 number input type in Chromium, and you are definitely not the only one that doesn't care for this.

I have worked around this issue in the past by using the text type. For example, this has worked well (tested just now in Chrome 11.0.696.71):

<input type="text"         placeholder="Enter Text"         name="inputName"         pattern="[0-9]*"> 

This behavior of the number type (to me, at least) is definitely a bug, because the HTML5 standard specifies the number should have the following value when formatted for display:

The algorithm to convert a number to a string, given a number input, is as follows: Return a valid floating point number that represents input.

And the standard defines a "valid floating point" number here, and as far as I can see, including grouping characters is not expected.


Update

I've isolated the issue to the following code down in the guts of WebKit. I've included the line that fixes the issue here as well:

// From LocalizedNumberICU.cpp String formatLocalizedNumber(double number, unsigned fractionDigits) {     NumberFormat* formatter = numberFormatter();     if (!formatter)         return String();     UnicodeString result;     formatter->setMaximumFractionDigits(clampToInteger(fractionDigits));     formatter->setGroupingUsed(FALSE); // added this line to fix the problem     formatter->format(number, result);     return String(result.getBuffer(), result.length()); } 

I'm on vacation next week, but plan on submitting this patch to the WebKit team when I return. Once they (hopefully) accept the patch, Chromium should pull it in as part of its normal refresh process.


You can see the original code here, the patched revision here, and the diff of the original file and the patched file here. The final patch was created by Shinya Kawanaka.

like image 132
arcain Avatar answered Sep 20 '22 15:09

arcain


There are a couple of extra properties that you can check including valueAsNumber.

Chrome attempts to provide you with the best input method possible based on the input type. In this case, number also has some extra abilities such as toggle up and down.

The point of this, is if the number isn't valid, you will be able to detect that there are errors and also set the styling input[type=number]:invalid { background-color: red; }

like image 34
Kinlan Avatar answered Sep 21 '22 15:09

Kinlan