Tagged Questions
0
votes
2answers
113 views
How can I improve this simple form?
I have a simple form with 2 text fields and a searh button.
I.e. something like this:
I don't like the checkbox as it is. How could I improve this better?
4
votes
1answer
87 views
How to direct users through a multi-step payment process?
I'm trying to develop a payment process for my users. Here are the steps that are required:
User views the page that outlines all the awesome features that you get if you pay for the premium ...
6
votes
3answers
220 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 ...
4
votes
1answer
74 views
Accesibility vs. read only inputs
I have a form with some read only fields depending on the customer role. As a rule, I use read only fields for those inputs.
have you had any problems with this approach using and assistive ...
4
votes
1answer
369 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 ...
5
votes
2answers
248 views
Sign up button disabled by default - Best practice?
I would like to know what the best practices in the web are for Sign up button on HTML Forms. Currently the site I'm working on has a design in which Sign up is disabled by default and is enabled when ...
2
votes
3answers
99 views
Choosing from a list of options and preserving order
We have a listing of topics and would like users to be able to choose three topics from the list and would also like to preserve the order in which the topics are chosen.
Using three <select>s ...
2
votes
2answers
356 views
Standard list of religions for dropdown menu
I am creating a form that will include a step about the person's religion, I have seen forms that contain a dropdown menu of religions, however I cannot find one which has a standard list of ...
14
votes
1answer
4k views
Why is it inaccessible to create a form with no submit button?
Considering the W3C advice on including submit controls, is it still possible for a form to be accessible if the only way to submit it is by pressing the return/enter key?
4
votes
1answer
568 views
Best Method to Present a Many to Many Form to User
I have a questions about how to best present a form based off a many to many relationship to a user. I'll explain my models to help give an idea of what data I need to present.
Models and ...
20
votes
3answers
1k views
HTML label association with inputs; bad UX?
I'm a web developer having a weird UX issue. When I build HTML forms, I ensure that every input's label is implemented through a <label></label> tag and that each label uses the for ...
8
votes
3answers
786 views
Multiscreen Forms (Wizards), the Form's Previous Button, and the Back Button
Scenario:
I have a web form split across 3 screens/pages. A user can move between forward and back between the screens via Next and Previous labeled buttons respectively.
Question:
When the user ...
3
votes
3answers
190 views
Should a informational box for a wide form be centered, left or right aligned?
I am working on updating the layout and styles of our existing application. At the top of a very wide table that has lots of checkboxes and fields is a information box. We need to explain some basic ...
8
votes
5answers
2k views
Modern approach to textarea (or alternatives)
For a simple text editor for longer articles I am looking for advice and inspiration on programming/designing a minimalistic and modern textarea (which does not necessarily have to use the tag) ...
1
vote
2answers
153 views
Tag form interface
This is my form:
I need some help because i have no experience with web interfaces. I would like it to be estethically pleasant without taking too much space (it's rendered several times for every ...
1
vote
2answers
236 views
Signup form on front page?
Will you get more signups if you put the signup form on the front page or on another page that users access via a link on the front page?
Form on the front page might make it a bit cluttered - I'm ...
32
votes
11answers
10k views
Why is it impossible to deselect HTML “radio” inputs?
Previous title: Default behavior of HTML “radio” inputs: Did they get it wrong?
In HTML, there are currently two types of "checkbox" style controls:
Checkbox: Allows toggling on/off, multiple ...
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?
23
votes
17answers
738 views
All my users are from Afghanistan or how to get users to correctly fill out a form
I have a website with a form users fill out to create an account. Following advice from this forum and other places I am asking for only the minimum required information to create an account ie. ...
14
votes
4answers
1k views
Does the average user understand the standard HTML multiple select box?
If I want the user to select one or more items the HTML symantecally correct form element would be <select multiple>.
So the code would be:
<select multiple id="sel">
...
21
votes
6answers
7k views
What should be the default option of a required dropdown list?
Given that there is no logically default animal from the list of animals below, what should be the "Default Value" below, according to best practice?
<label for="animal">Animal ...
9
votes
2answers
1k views
Proper usage of fieldset / legend tags
I'm wondering what the suggested usage of <fieldset>s are on a webpage.
For example, on a simple page with just one form (one set of inputs) is it still recommended to use a fieldset? Or should ...
