Good night guys,
I am using input type with numbers, but the field is a currency value with comma and point. More Android opens the keyboard with only numbers without comma or point.
Example error on Galaxy Tab 10.1
or
Good night guys,
I am using input type with numbers, but the field is a currency value with comma and point. More Android opens the keyboard with only numbers without comma or point.
Example error on Galaxy Tab 10.1
or
I had already tested this solution, even using pattern without result. When I try to tell dot or comma, simply runs out of action.
Examples:
<input type="text" name="test" pattern="\d*" />
<input type="number" step="0.01" pattern="\d+(\.\d*)?">
<input type="number" min="0" max="999" step="0.000001" pattern="\d+(\.\d*)?" />
Ahh i using Android 3.2 em Samsung Tab 10.1
spinnerplugin to handle the currency values - tjvantoll.com/2012/07/15/…. You wouldn't get the correct keyboard on Android but you would get spinners that would work with the currency input anywhere.