Tagged Questions
6
votes
5answers
108 views
Forms: Sample description- for label or field? what should be the placement?
I need to place example input text [abc@pqr.com] for a field or label.
Where should I place example (or sample) input description? Here, I have shown four examples of an email ID input for ...
6
votes
3answers
193 views
Converting two character dates into four character dates
I have an application that converts the following invalid dates, with only two-character years into a valid date format automatically while the user's filling out the form:
(NOTE: The application is ...
2
votes
2answers
125 views
Is it “unsafe” to rely only on placeholders (input fields)? [duplicate]
I've noticed that in many sites, the text within input fields are always either label tags and span tags. Twitter's example:
(in this case, the labels seem to be inside the input field).
I never ...
6
votes
3answers
77 views
Form prompts inside form fields always wrong?
I've noticed in the edit-profile form on UX Stack Exchange a weird prompt with an important message - the date format.
Personally I would consider it terribly wrong (force to memorize data format, ...
4
votes
1answer
366 views
Idea for improved usability for HTML form checkboxes and radio buttons [duplicate]
Possible Duplicate:
Should the cursor change to pointer over radio buttons, checkboxes, their labels and selects?
My problem is that the little checkbox and radio buttons for form controls ...
3
votes
1answer
92 views
Name and Company - One field or Two?
I am laying out a form on a website with the typical name & address fields. While I've done this a number of times, I have began to try and trim fields from my forms that will be on smaller ...
7
votes
6answers
262 views
How to convey a true/false value to a user?
I'm developing an application where users will be allowed to create custom fields that are part of a record, in addition to the fields that are provided by default. Users will be able to choose names ...
3
votes
2answers
278 views
dynamic form design
I have a multistep form setup in my rails app.. In one of my steps the user can enter a friends name, birthday, gender, and the persons interests.
They can enter as many friends as they like (each ...
16
votes
6answers
679 views
Is it acceptable to make a text field look like a write in line?
My designer would like to implement a text field that drops down on hover against a white background, and only have a bottom border to define the field. Also, the designer would like to see a flashing ...
2
votes
3answers
575 views
Displaying selections from a Dropdown Check List
First of all, I apologize for my Englsih and will try to be as clear as possible!
I'm currently having a problem with a Dropdown Check List.
I have, on the left of the search results, a Dropdown ...
2
votes
2answers
150 views
Enabling spell check in the UI
We are building an application which will contain spell checking features for areas where users will enter input.
We have already implemented the feature for our rich text editors, whereby spell ...
16
votes
3answers
971 views
Character limits on fields - pros and cons and best practices?
Some of our form fields have character limits. We're debating whether we should reflect the current size of data entry, or to simply hard-limit and inhibit data entry beyond that size.
In HTML, ...
6
votes
4answers
285 views
Is it good practice to only accept numeric keystrokes in number-only fields?
I have a form that only takes in numbers as it represents a dollar amount. Currently, the form only accepts numerical keystrokes. Is this good practise?