Click here to Skip to main content
Click here to Skip to main content

Number Validation and Formatting using Javascript

By , 8 Apr 2008
 

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

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)

About the Author

shokisingh
Team Leader
India India
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralGreat workmemberismail Hingoro7 Sep '09 - 23:09 
GeneralGreat scriptmemberMember 461624723 Jan '09 - 3:43 
GeneralThank youmemberMember 306128612 Jun '08 - 18:32 
Generaland one wish..memberberkcan17 May '08 - 6:48 
GeneralRe: and one wish..memberShoki12 Jun '08 - 7:58 
GeneralHey thanks !memberberkcan17 May '08 - 6:22 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 8 Apr 2008
Article Copyright 2008 by shokisingh
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid