Tagged Questions
4
votes
3answers
72 views
Limiting user input - beneficial or user annoyance?
I am coming up with my project's validation framework, including preventative error handling. I have been debating as to whether I should limit user input to prevent errors in cases such as prices or ...
6
votes
3answers
221 views
Are extensive validations necessary on mundane input forms in a website?
I'm having a rather bitter affair with my client who also happens to be my boss at office. He is a completely non-technical dumb muggle in terms of application development. The frustrating thing is ...
14
votes
2answers
283 views
When should auto-correction occur?
I was using MS Excel and a question arose concerning input auto-correction: when is the right time for it?
Some context first: as I'm in France the comma (,) is used as decimal separator. Thus when I ...
2
votes
1answer
136 views
Forcing user to enter correct data
Consider the following scenario for a form with two fields "Full name" and "email".
When user starts editing the "Full name" field I will not allow user to start editing "email" field until "Full ...
10
votes
5answers
359 views
What would be the best way to let a user add a URL to a form?
Currently our webapplication simply shows a textbox with no validation at all.
There is a small icon placed next to the textbox that allows the user to open the URL in a new browser window to check ...
9
votes
4answers
645 views
What is the best way to display date validation errors?
I am performing date validation on several forms. This validation includes making sure a date does not fall on a weekend, does not fall on a major holiday, is at least 3 business days from the current ...
9
votes
5answers
490 views
Progressive Validation and Disclosure
I am trying to find an example of progressive validation. We have a UI for a a visual editor where a user does things like indicate dimensions in pixels or percent.
The editor properties are in sets ...