1
vote
1answer
35 views

allow input to be 2.d.p, if not prompt error msg

I want to make sure that when the user inputs the exchange rate and amount, he can only input it to 2.d.p, if the input is not 2.d.p then there must be a error message. How can i do this without ...
0
votes
1answer
52 views

Format a telephone number in an INPUT on the fly

I'm looking for a function that will reformat a telephone number as the person is typing it in so it will come out as: (212) 477-1000 I found a snippet and created a function that will take the value ...
-4
votes
3answers
64 views

Array with a catch [closed]

Here is what I have to do: Create an Array User inputs 10 double elements Use a catch to make sure it is valid data Then display the data Here's the code so far: static void Main(string[] args) { ...
-5
votes
2answers
101 views

Java: sum numbers when negative entered [closed]

I have an assignment to write a program which takes indefinite number of input (positive)numbers until negative is entered. When I enter a negative number the program stops and sums up all positive ...
0
votes
1answer
127 views

<input type=“number”> in Firefox. Why does Mozilla don't support it on his browser?

It's strange. input number is a standard for W3C, but it doesn't work on Firefox yet. is there some trick for using input number on Firefox?
1
vote
1answer
144 views

Input validation of an Integer using atoi()

#include "stdafx.h" #include <stdlib.h> void main() { char buffer[20]; int num; printf("Please enter a number\n"); fgets(buffer, 20, stdin); num = atoi(buffer); if(num ...
0
votes
1answer
123 views

input type number not cross browser friendly

I am working with a number input type eg <!DOCTYPE html> <html> <body> <form action="demo_form.asp"> Quantity (between 1 and 5): <input type="number" name="quantity" ...
0
votes
1answer
157 views

html5: input type number (or text if not recognized) of the same length for all browsers

What is the best way to add some attributes to<input type="number"> so the length of this element is the same for all the most popular browsers? Actually, I used size="5" for <input ...
0
votes
0answers
21 views

Input type text auto trunks numbers

I've been searching through the web, also through stackoverflow, and no answer I've got so far for my issue. I've a form with an input type text. Ok. So from my DDBB script controller I get some ...
1
vote
2answers
135 views

number/numbers to list by using input()

Maybe this is a very basic question but i am a beginner in python and couldnt find any solution. i was writing a python script and got stuck because i cant use python lists effective. i want user to ...
0
votes
1answer
118 views

Kindle Fire first-generation inputType “numberSigned” and “numberDecimal” cancel each other out

I have a calculator-type app in the store that has some editText boxes that only allow numbers, decimals, and negative numbers. I put in the XML android:inputType="numberDecimal|numberSigned". This ...
1
vote
1answer
197 views

(iphone5+phonegap) number input field : last characters changes to 0

I am working on phonegap application. I am facing a very weird behavior. Problem : When I enter more than 15 digits in the input field, all extra digits are replaced with '0' after closing soft ...
1
vote
5answers
2k views

How to make HTML input tag only accept numerical values?

I need to make sure that a certain <input> field only takes numbers as value. The input is not part of a form. Hence it doesn't get submitted, so validating during submission is not an option. I ...
2
votes
1answer
67 views

Input type “number” changes value if too high - But why?

I have an input field with type number: <input type="number" id="cardNumber" /> When typing "1234567891234567" as value, the last 2 digits change and the new value becomes: "1234567891234570" ...
1
vote
3answers
63 views

new to lists on python

This is my current code: while True: try: mylist = [0] * 7 for x in range(7): sales = float(input("Sales for day:")) mylist[x] ...
4
votes
3answers
219 views

Count number of user inputs

I searched for my query but couldn't find anything of use. I'm just starting to learn Java and I made a basic guessing game program. My problem is that I need to count the number of guesses the user ...
0
votes
3answers
286 views

Analog FM radio like control

I'd like to substitue a normal EditText control (inputType="numberDecimal") to input some decimal numbers with an control we all know from an analog FM radio: Basically you have an integer ...
0
votes
2answers
54 views

Change number to the closest from the list of numbers

I have a list of numbers. I have a input type='text' form where someone can write any number. But I want this number that he entered to change to the closest one from my list. For example my list ...
0
votes
1answer
76 views

Input a number with degree

Help with problem: I need to write C + + program, which input and displays numeric variables with operators printf and scanf. the values are: E = 10 ^ 3 F = -450 H = 0,005 * 10 ^ 2 X = -43,562 * ...
0
votes
2answers
505 views

Styling HTML5 input type number

I'm writing a form in HTML5. One of the inputs is type=number. I want the input to only show 2 digits but it seems to default to showing at least 5 digits, which takes up extra space. I've tried ...
1
vote
2answers
1k views

jQuery validating input type number

Im trying to set function onFocusOut event with jQuey like: $(':number').keypress(function (evt){ //validating cone } but it can't select number types throwing an error Error: Syntax error, ...
2
votes
2answers
969 views

HTML5 - Android Tablet - INPUT TYPE NUMBER

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 ...
0
votes
1answer
36 views

Getting variable for X

>> Fiddle << So, this fiddle works as it should: when two radio's with a different name attribute are checked, text is shown which echoes the values of these buttons. However, what if there ...
0
votes
0answers
61 views

onchange check for numbers and symbols [closed]

<input name="full_name" type="text" id="full_name" maxlength="30" required placeholder="eg. Bill Gates" minlength="4" class="required" required pattern="^[a-zA-Z0-9]+[^0-9.]$" onchange="?"> ...
1
vote
2answers
1k views

jQuery input limit numbers/digits to 4, but text can be infinite length

How can I have an input that is limited to 4 numbers/digits, but if text is typed the character length is infinite? Final working code: function isNumber (o) { return ! isNaN (o-0); } ...
0
votes
4answers
219 views

javascript input field to number

I need to convert an input field into a number. So if the input field is empty, or contains letters, the number would be 0. This doesn't work: var trade_gold = ...
4
votes
1answer
1k views

valueUpdate: 'afterkeydown' for input type=“numeric” in Knockoutjs 2.0

I'm having a great time learning to use knockoutjs on a new project I am working on. It is truly an amazing framework, and at least for me it's really a great help both practically and as a mental ...
0
votes
1answer
85 views

an int data plus $('input').val(),the result is a string?! not a number

I have a simple input control : <input type="text" min="0" max="100" value="0"> then I do a sum compute: var a=10; console.log(a+$('input').val()); however the result is '100',not '10'?! ...
1
vote
4answers
3k views

jquery how to empty input field

i am in mobile app and i use an input field in order user submit a number... when i go back and return to the page that input field present the latest number input displayed at the input field. is ...
1
vote
4answers
2k views

jquery input number [duplicate]

Possible Duplicate: Is it possible to customize an input field for amounts with +- buttons? how to make + (plus) and - (minus) value buttons for <input type="number" class="numbertype" ...
-1
votes
2answers
114 views

Checking input value

I am trying to check whether the user gives an input that is number but not letters. When a non-numeric value is given I want to print an alert error message like "incorrect format". This is my ...
0
votes
1answer
282 views

Converting a text input to a number input

Currently I have a bunch text inputs, which I can't change the HTML for (as it is pre-generated), but I want to convert them from type="text" to type="number", is there a bit of jQuery or JavaScript I ...
14
votes
7answers
13k views

How to add maxlength for HTML5 input type=“number” element?

For input type="number" element, maxlength is not working. How can I restrict the maxlength for that number element?
4
votes
1answer
1k views

HTML5 input type number vs tel

I'm working on updating some form inputs to HTML5. I'm not interested in validating the data so much as having the numeric key pad on mobile devices. Input type 'tel' seems to do what I want, I get ...
4
votes
1answer
694 views

Android soft keyboard show numbers view first

I have a login screen on my app which accepts a CPF as login (CPF is an unique number identification that every Brazilian citizen have, e.g: 10546819546), but it can also accept passport numbers as ...
1
vote
3answers
4k views

Validating String input has no numbers

I have found how to validate that an input is a number using try/catch but how do I go about validating that a user input is alphabetical only and contains no numbers?
4
votes
1answer
1k views

How can I make the HTML5 number field display trailing zeroes?

I have a field: <input type='number' /> I'd like to punch in 0.50 without it “correcting it” to 0.5, so it would display 0.50.
1
vote
1answer
2k views

Is there any way to prevent input type=“number” getting negative values?

I want to get only positive values, is there any way to prevent it using only html Please don't suggest validation method http://prntscr.com/2zhcw
1
vote
3answers
2k views

How to properly set InputType for EditText?

I want my EditText content type as numeric. I set InputType which is 2 according to the reference. But it's still possible to input any character. final EditText input = new EditText(this); ...
2
votes
3answers
3k views

Display flaw with HTML input type number on iPhone iOS/Safari

I want to use HTML input type="number" on a mobile application, in order to indicate to the smarter mobile phones (Android, iPhone and some others), that the numeric keyboard is more interesting for ...
1
vote
2answers
120 views

Form type - only numbers !

<html> <form action="update.php" method="POST" name="ID"> <input type="text" name="ID" "> <input type="Submit" value="Submit"> </form> </html> How can this form ...
0
votes
0answers
594 views

HTML5: Is there any way to change comma to space in input-type-number?

Is there any way to change comma to space in input-type-number? (without javascript) by default it format(split) number with commas (,) after 3 digits. Any ideas?
12
votes
5answers
10k views

Force decimal point instead of comma in HTML5 number input (client-side)

Recently, I have seen that some browsers localize the input type="number" notation of numbers. So now, in fields where my application displays longitude and latitude coordinates, I get stuff like ...
1
vote
3answers
2k views

Only accept number from 1 to 9 Using JavaScript

Would like to know how to only accept number to be entered into inputbox from 1 to 9 and if entered for example 0 give alert message, sorry not a valid number. please check my function that i have ...
2
votes
2answers
322 views

monitoring type=number?

I am using the html5 input type="number". I want to monitor this input for change, but: because in browsers that support it It gets spin controls I can't just monitor .keyup, because I don't want to ...
2
votes
2answers
4k views

HTML5 inputs on the Android browser

iPhone's Mobile Safari seems to recognize most new HTML5 input types, in particular the ones detailed here, such that tapping in an input declared like so: <input type="number" id="myInput" ...
0
votes
1answer
2k views

dynamically reformat input in javascript to add commas to numbers

I have an issue with number inputting. The user usually enters a large number with many zeros, and often they are missing one or two zero as it is difficult to accurately count them. I think ...
3
votes
2answers
6k views

Keep reading numbers until newline reached using a Scanner

I want to read a couple of numbers from the console. The way I wanna do this is by having the user enter a sequence of numbers separated by a space. Code to do the following: Scanner sc = new ...
-1
votes
2answers
430 views

How to input a fractional number?

I'm beginner in Java Android developing. I'm using Eclipse SDK 3.6.1 version. I'm trying to do a simple calculator. I have one problem how to input a fractional number? There is my code: @Override ...
1
vote
3answers
4k views

ExtJs NumberField

I am using ExtJs NumberField. The good thing is it validates that only numbers are entered. But I want a hyphen as well. How could I go about editing the javascript var ...

1 2