Be careful when you using an input “number” field in your web app

Recently I faced one interesting issue when I working on my web application. I thoughts it will help others.

Introduction

is one of the HTML tags and has some types are text, number, password..etc., So, a user able to give a value through …


This content originally appeared on DEV Community and was authored by lakshmanan-arumugam

Recently I faced one interesting issue when I working on my web application. I thoughts it will help others.

Introduction

is one of the HTML tags and has some types are text, number, password..etc., So, a user able to give a value through to the input. Each input type field has some generic behavior. Input number type field rejects non-numerical entries.

Technical use case:

If a user is able to create a custom number field in your product and add the field inside a product form(Add contact form). Inside the Contact form, the number field value will have an auto-generated large number of digits.

Problem

If an input field has without limit the min and max length of the number. if the user is able to more than 20 digits number value, the javascript engine only accepts as specified in IEEE 754 remainings will automatically change 0.

Example:
Alt Text

This is an issue.

Solution 1

By default, limit the number field max length and before save the field validation also.

<input type="number" min="-9007199254740991" max="9007199254740991"/>

Solution 2

Whenever we save the user number field value before the two conditions need to check.

function saveNumber(value) {
   if( Number.MIN_SAFE_INTEGER <= value && Number.MAX_SAFE_INTEGER >= value)
     //do save stuff
   }else {
     // Throw error
   }
}

Done and thanks for reading this post...


This content originally appeared on DEV Community and was authored by lakshmanan-arumugam


Print Share Comment Cite Upload Translate Updates
APA

lakshmanan-arumugam | Sciencx (2021-05-12T19:04:39+00:00) Be careful when you using an input “number” field in your web app. Retrieved from https://www.scien.cx/2021/05/12/be-careful-when-you-using-an-input-number-field-in-your-web-app/

MLA
" » Be careful when you using an input “number” field in your web app." lakshmanan-arumugam | Sciencx - Wednesday May 12, 2021, https://www.scien.cx/2021/05/12/be-careful-when-you-using-an-input-number-field-in-your-web-app/
HARVARD
lakshmanan-arumugam | Sciencx Wednesday May 12, 2021 » Be careful when you using an input “number” field in your web app., viewed ,<https://www.scien.cx/2021/05/12/be-careful-when-you-using-an-input-number-field-in-your-web-app/>
VANCOUVER
lakshmanan-arumugam | Sciencx - » Be careful when you using an input “number” field in your web app. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/05/12/be-careful-when-you-using-an-input-number-field-in-your-web-app/
CHICAGO
" » Be careful when you using an input “number” field in your web app." lakshmanan-arumugam | Sciencx - Accessed . https://www.scien.cx/2021/05/12/be-careful-when-you-using-an-input-number-field-in-your-web-app/
IEEE
" » Be careful when you using an input “number” field in your web app." lakshmanan-arumugam | Sciencx [Online]. Available: https://www.scien.cx/2021/05/12/be-careful-when-you-using-an-input-number-field-in-your-web-app/. [Accessed: ]
rf:citation
» Be careful when you using an input “number” field in your web app | lakshmanan-arumugam | Sciencx | https://www.scien.cx/2021/05/12/be-careful-when-you-using-an-input-number-field-in-your-web-app/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.