I've got an order page on my site. Some order items can have decimal quantities, some can't.
What's the best way to prevent the user from entering decimal quantities? (Apart from an alert box and setting the field to zero)?
|
I've got an order page on my site. Some order items can have decimal quantities, some can't. What's the best way to prevent the user from entering decimal quantities? (Apart from an alert box and setting the field to zero)? |
|||||||||||
|
|
Intercept key events for the field, detect illegal characters upon input, keep them from getting entered in the field and add a temporary msg near the field (inserted into the page) that explains what characters or values are allowed. pop up alerts are a bad way to give feedback in the middle of typing. Then, validate again before submission because there are other ways to get data into fields (drag/drop, copy/paste, etc...) that you might not have caught everything. Here's a jQuery example of both an integer only and a decimal only field with temporary messages displayed when invalid keys are typed: Working jsFiddle: http://jsfiddle.net/jfriend00/CkDTy/
|
||||
|
|
|
You can add an event (on key press) and detect if a decimal point has been pressed by the user or not. Also on form submission, use regular expressions to check if the submitted data is correct (because the user can forge the data using live editor like firebug). Also make sure to double check that on your server side in case if user disabled javascript. for example:
You better to use the same function cause it's basically the same thing and invoke it from both events. On server side, check the submitted data again |
|||
|
|
|
Here's a little jQuery that prevents non-numerical inputs:
|
||||
|
|