Click here to Skip to main content
15,879,348 members
Articles / Programming Languages / Javascript
Article

Number Validation and Formatting using Javascript

Rate me:
Please Sign up or sign in to vote.
3.00/5 (4 votes)
8 Apr 2008CPOL1 min read 67.8K   823   8   6
Numberic value validation and formatting using Javascript

Introduction

The control uses javascript to handle number formatting as you keep typing and does the validation as well. For one of our requirement, we needed a javascript based control that did formatting as the users kept typing. Google search only yielded script that did formatting on focus change events only. So I went about creating a new control myself.

Background

The idea for this control came from one of our client requirement that needed a small javascript to have a textbox that will take big numbers. The numbers can have unlimited decimal places. Also the script will do 3 things at the same time.
1- It should only allow numbers (negative as well) and "." To be entered.
2- It should format the number as 1,234,567,789.123456789. It should execute such that the the commas are put while typing.
3- It should also only allow numbers that are as big as double can handle.

Using the code

Using the control is very easy and just needs adding the javascript code from the source page.

On the textbox on which the formatting needs to be applied, use the following code

JavaScript
onkeypress="return ValidateNumberKeyPress(this, event);" onkeyup="ValidateNumberKeyUp(this);"
onblur="ValidateAndFormatNumber(this)"

Points of Interest

Script is preety easy to read and understand. Some references that were used during the course of the script creation

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralGreat work Pin
ismail Hingoro7-Sep-09 23:09
ismail Hingoro7-Sep-09 23:09 
GeneralGreat script Pin
Member 461624723-Jan-09 3:43
Member 461624723-Jan-09 3:43 
GeneralThank you Pin
MrRolly12-Jun-08 18:32
MrRolly12-Jun-08 18:32 
Generaland one wish.. Pin
berkcan17-May-08 6:48
berkcan17-May-08 6:48 
GeneralRe: and one wish.. Pin
shokisingh12-Jun-08 7:58
shokisingh12-Jun-08 7:58 
GeneralHey thanks ! Pin
berkcan17-May-08 6:22
berkcan17-May-08 6:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.