Are required indicators necessary for radio buttons?Why is it impossible to deselect HTML “radio” inputs?Reasonable character limit for a comment field on a site feedback form?Should the selection of a Radio button control the display of two different forms?Filtering by distance based on an address as referenceWhen should an input's validation message show on a form that has already been submitted?styling of required fieldsCheckboxes or Radio buttons: Only one or zero choicesCan we use Radio/Checkbox for mandatory form fields
Interaction between Ethereal Absolution versus Edgar Markov with Captivating Vampire
Designing a prison for a telekinetic race
Is "stainless" a bulk or a surface property of stainless steel?
Sous vide chicken without an internal temperature of 165
Would it be illegal for Facebook to actively promote a political agenda?
How to dismiss intrusive questions from a colleague with whom I don't work?
Could sidesticks be linked?
Maximum number of pairwise linearly independent vectors
"Silverware", "Tableware", and "Dishes"
Is a butterfly one or two animals?
Do living authors still get paid royalties for their old work?
Are there any legal requirements concerning airline pilots and their watches?
Why don't politicians push for fossil fuel reduction by pointing out their scarcity?
Repurpose telephone line to ethernet
Is this kind of description not recommended?
How to avoid using System.String with Rfc2898DeriveBytes in C#
Can others monetize my project with GPLv3?
Starships without computers?
Earliest evidence of objects intended for future archaeologists?
Nuclear decay triggers
Why is su world executable?
My two team members in a remote location don't get along with each other; how can I improve working relations?
Vacuum collapse -- why do strong metals implode but glass doesn't?
How do you call it when two celestial bodies come as close to each other as they will in their current orbits?
Are required indicators necessary for radio buttons?
Why is it impossible to deselect HTML “radio” inputs?Reasonable character limit for a comment field on a site feedback form?Should the selection of a Radio button control the display of two different forms?Filtering by distance based on an address as referenceWhen should an input's validation message show on a form that has already been submitted?styling of required fieldsCheckboxes or Radio buttons: Only one or zero choicesCan we use Radio/Checkbox for mandatory form fields
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Simple question, is an required field indicator (ex. *) necessary when presenting a set of a radio buttons in a form?
Caveat, one radio button will be already pre-selected.
Technically the field question is indeed required, but does the fact that one selection is always selected negate the need to visually indicate that it is required?
forms formatting
New contributor
add a comment |
Simple question, is an required field indicator (ex. *) necessary when presenting a set of a radio buttons in a form?
Caveat, one radio button will be already pre-selected.
Technically the field question is indeed required, but does the fact that one selection is always selected negate the need to visually indicate that it is required?
forms formatting
New contributor
I can’t recall even the last time I saw an * to denote a mandatory field ..
– David
2 hours ago
add a comment |
Simple question, is an required field indicator (ex. *) necessary when presenting a set of a radio buttons in a form?
Caveat, one radio button will be already pre-selected.
Technically the field question is indeed required, but does the fact that one selection is always selected negate the need to visually indicate that it is required?
forms formatting
New contributor
Simple question, is an required field indicator (ex. *) necessary when presenting a set of a radio buttons in a form?
Caveat, one radio button will be already pre-selected.
Technically the field question is indeed required, but does the fact that one selection is always selected negate the need to visually indicate that it is required?
forms formatting
forms formatting
New contributor
New contributor
edited 3 hours ago
Arnold Palmer
New contributor
asked 9 hours ago
Arnold PalmerArnold Palmer
83 bronze badges
83 bronze badges
New contributor
New contributor
I can’t recall even the last time I saw an * to denote a mandatory field ..
– David
2 hours ago
add a comment |
I can’t recall even the last time I saw an * to denote a mandatory field ..
– David
2 hours ago
I can’t recall even the last time I saw an * to denote a mandatory field ..
– David
2 hours ago
I can’t recall even the last time I saw an * to denote a mandatory field ..
– David
2 hours ago
add a comment |
4 Answers
4
active
oldest
votes
The problem at hand does not seem to be a question of correct asterisk marking rules, or a literal interpretation of metaphor behind the radio button control.
Rather, the conflict from your description appears to be this:
While the two radio button selection instances are marked as required, the requirement is already fulfilled by pre-populated selection. However the true requirement seems to me that your user should make a meaningful choice, not just any.
So let's first ensure that that actually happens, and then think about appropriate UI presentation.
Pre-populated but required selections can be problematic because a momentarily inattentive user may consent to 'canned' choices that aren't what they would actually choose. The design problem is less a case of "You must make any old choice in order to proceed", and conformity with hard conventions for required selections, but more of "Make sure the radio button selection we pre-populated for your convenience is actually what you wish".
Yes, the asterisk to indicate required is technically redundant, as others have written. But if it is critical that your users provide accurate information on this page (and that's what required implies), present all choices in an indeterminate start state, including radio buttons. Do not pre-populate anything.
That would ensure that as your first-time user encounters the set of forms each and every one must be filled, checked, and selected ("signed, sealed, delivered...") before the calls to action 'Cancel' and 'Save' become available to them.
It is perfectly okay to my mind to present a set of radio button type controls in an initial none-selected state, even though the physical metaphor of radio button controls implies a type of 'whack-a-mole' behaviour ('one pops in, all other ones pop out' kind of thing). But remember that this is just a metaphor. If you're working within a development kit of sorts, or even a prototype application like Axure RP, UI controls like that usually come as a library 'widget' with black-box behaviour at first. That is an unfortunate constraint, but more often than not it can be overridden. If you have some progressive disclosure going on - i.e. a set of choices presented further down-page depend on an earlier radio button setting, you could even add a 'clear' function to return the radio button set to a nil state.
Looking at your UI example, it occurs to me that all forms are mandatory.
The effect of marking them as such repeatedly (*) gets washed out because the constraint seems universal to all of them - unless your actual form is longer and you're just presenting an excerpt for simplicity, or the form consists of several further pages on which compulsory selections are interspersed with optional ones.
I would therefore guard-rail the user by two things:
A collective headline sub-caption "All selections are required". If all selections are truly required, say so in no uncertain terms.
Disable 'Save', until all selections have been made, up to the very last one. Keep 'Cancel' active; this is how your user can safely exit the form.
By the above an explicit verbal instruction tells your user why the calls to action are blocked. If in addition, present all possible selections initially in an indeterminate state and thus force your user - appropriately - to provide the necessary information with intent and purpose, rather than have them inadvertently accept canned selections in auto-pilot mode.
Note I said initially. The above describes the carte-blanche state in which a first time user should find the form. If there is a function by which the user can instruct the application to remember my settings, all selections become sticky and can be edited (as needed, or simply left as they are) on subsequent visits.
I hope that helps. Best of success!
"However the true requirement seems to me that your user should make a meaningful choice, not just any." Yes, you found what I was trying to allude to in the OP.
– Arnold Palmer
3 hours ago
@ArnoldPalmer, then don't pre-select an option
– mowwwalker
15 mins ago
add a comment |
You should only mark the field as required if the user must inform something in that field. In your example, since the user is not required to change the value of the fields, you don't need to mark them.
add a comment |
From what I have been reading, it is easier on the user to only mark the optional fields. From what you have shown all are required, so why add the noise of the *? By switching to that model, the question becomes solved.
If you need to keep it, you might place it at the end of the label and change the color to a grey.
1
There is an article from nngroup about this: nngroup.com/articles/required-fields . I used to think marking optional fields was better, but in this article they have some good points on why you should always mark them. The most important, I think, is the one about the user having to scroll down to know which fields are mandatory.
– Aline
8 hours ago
add a comment |
There is a potential problem with interpreting the requirements from the user's point of view when you make a pre-selection or default choice in a mandatory field. If none of the choices are suitable to the user and the field is mandatory then you have not allowed the user to indicate that this is the case.
Normal practice would be to make mandatory only those fields that are absolutely required, and with radio buttons to ensure that all potential possibilities are covered (e.g. by using 'others') if the field is mandatory.
Pre-filling information works best when you have some information from the users to provide a strong indication of a preference, otherwise it is possible for people to skip fields that have data entered already when you actually want a confirmation from users that they have read and filled in the details.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "102"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Arnold Palmer is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fux.stackexchange.com%2fquestions%2f127564%2fare-required-indicators-necessary-for-radio-buttons%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
The problem at hand does not seem to be a question of correct asterisk marking rules, or a literal interpretation of metaphor behind the radio button control.
Rather, the conflict from your description appears to be this:
While the two radio button selection instances are marked as required, the requirement is already fulfilled by pre-populated selection. However the true requirement seems to me that your user should make a meaningful choice, not just any.
So let's first ensure that that actually happens, and then think about appropriate UI presentation.
Pre-populated but required selections can be problematic because a momentarily inattentive user may consent to 'canned' choices that aren't what they would actually choose. The design problem is less a case of "You must make any old choice in order to proceed", and conformity with hard conventions for required selections, but more of "Make sure the radio button selection we pre-populated for your convenience is actually what you wish".
Yes, the asterisk to indicate required is technically redundant, as others have written. But if it is critical that your users provide accurate information on this page (and that's what required implies), present all choices in an indeterminate start state, including radio buttons. Do not pre-populate anything.
That would ensure that as your first-time user encounters the set of forms each and every one must be filled, checked, and selected ("signed, sealed, delivered...") before the calls to action 'Cancel' and 'Save' become available to them.
It is perfectly okay to my mind to present a set of radio button type controls in an initial none-selected state, even though the physical metaphor of radio button controls implies a type of 'whack-a-mole' behaviour ('one pops in, all other ones pop out' kind of thing). But remember that this is just a metaphor. If you're working within a development kit of sorts, or even a prototype application like Axure RP, UI controls like that usually come as a library 'widget' with black-box behaviour at first. That is an unfortunate constraint, but more often than not it can be overridden. If you have some progressive disclosure going on - i.e. a set of choices presented further down-page depend on an earlier radio button setting, you could even add a 'clear' function to return the radio button set to a nil state.
Looking at your UI example, it occurs to me that all forms are mandatory.
The effect of marking them as such repeatedly (*) gets washed out because the constraint seems universal to all of them - unless your actual form is longer and you're just presenting an excerpt for simplicity, or the form consists of several further pages on which compulsory selections are interspersed with optional ones.
I would therefore guard-rail the user by two things:
A collective headline sub-caption "All selections are required". If all selections are truly required, say so in no uncertain terms.
Disable 'Save', until all selections have been made, up to the very last one. Keep 'Cancel' active; this is how your user can safely exit the form.
By the above an explicit verbal instruction tells your user why the calls to action are blocked. If in addition, present all possible selections initially in an indeterminate state and thus force your user - appropriately - to provide the necessary information with intent and purpose, rather than have them inadvertently accept canned selections in auto-pilot mode.
Note I said initially. The above describes the carte-blanche state in which a first time user should find the form. If there is a function by which the user can instruct the application to remember my settings, all selections become sticky and can be edited (as needed, or simply left as they are) on subsequent visits.
I hope that helps. Best of success!
"However the true requirement seems to me that your user should make a meaningful choice, not just any." Yes, you found what I was trying to allude to in the OP.
– Arnold Palmer
3 hours ago
@ArnoldPalmer, then don't pre-select an option
– mowwwalker
15 mins ago
add a comment |
The problem at hand does not seem to be a question of correct asterisk marking rules, or a literal interpretation of metaphor behind the radio button control.
Rather, the conflict from your description appears to be this:
While the two radio button selection instances are marked as required, the requirement is already fulfilled by pre-populated selection. However the true requirement seems to me that your user should make a meaningful choice, not just any.
So let's first ensure that that actually happens, and then think about appropriate UI presentation.
Pre-populated but required selections can be problematic because a momentarily inattentive user may consent to 'canned' choices that aren't what they would actually choose. The design problem is less a case of "You must make any old choice in order to proceed", and conformity with hard conventions for required selections, but more of "Make sure the radio button selection we pre-populated for your convenience is actually what you wish".
Yes, the asterisk to indicate required is technically redundant, as others have written. But if it is critical that your users provide accurate information on this page (and that's what required implies), present all choices in an indeterminate start state, including radio buttons. Do not pre-populate anything.
That would ensure that as your first-time user encounters the set of forms each and every one must be filled, checked, and selected ("signed, sealed, delivered...") before the calls to action 'Cancel' and 'Save' become available to them.
It is perfectly okay to my mind to present a set of radio button type controls in an initial none-selected state, even though the physical metaphor of radio button controls implies a type of 'whack-a-mole' behaviour ('one pops in, all other ones pop out' kind of thing). But remember that this is just a metaphor. If you're working within a development kit of sorts, or even a prototype application like Axure RP, UI controls like that usually come as a library 'widget' with black-box behaviour at first. That is an unfortunate constraint, but more often than not it can be overridden. If you have some progressive disclosure going on - i.e. a set of choices presented further down-page depend on an earlier radio button setting, you could even add a 'clear' function to return the radio button set to a nil state.
Looking at your UI example, it occurs to me that all forms are mandatory.
The effect of marking them as such repeatedly (*) gets washed out because the constraint seems universal to all of them - unless your actual form is longer and you're just presenting an excerpt for simplicity, or the form consists of several further pages on which compulsory selections are interspersed with optional ones.
I would therefore guard-rail the user by two things:
A collective headline sub-caption "All selections are required". If all selections are truly required, say so in no uncertain terms.
Disable 'Save', until all selections have been made, up to the very last one. Keep 'Cancel' active; this is how your user can safely exit the form.
By the above an explicit verbal instruction tells your user why the calls to action are blocked. If in addition, present all possible selections initially in an indeterminate state and thus force your user - appropriately - to provide the necessary information with intent and purpose, rather than have them inadvertently accept canned selections in auto-pilot mode.
Note I said initially. The above describes the carte-blanche state in which a first time user should find the form. If there is a function by which the user can instruct the application to remember my settings, all selections become sticky and can be edited (as needed, or simply left as they are) on subsequent visits.
I hope that helps. Best of success!
"However the true requirement seems to me that your user should make a meaningful choice, not just any." Yes, you found what I was trying to allude to in the OP.
– Arnold Palmer
3 hours ago
@ArnoldPalmer, then don't pre-select an option
– mowwwalker
15 mins ago
add a comment |
The problem at hand does not seem to be a question of correct asterisk marking rules, or a literal interpretation of metaphor behind the radio button control.
Rather, the conflict from your description appears to be this:
While the two radio button selection instances are marked as required, the requirement is already fulfilled by pre-populated selection. However the true requirement seems to me that your user should make a meaningful choice, not just any.
So let's first ensure that that actually happens, and then think about appropriate UI presentation.
Pre-populated but required selections can be problematic because a momentarily inattentive user may consent to 'canned' choices that aren't what they would actually choose. The design problem is less a case of "You must make any old choice in order to proceed", and conformity with hard conventions for required selections, but more of "Make sure the radio button selection we pre-populated for your convenience is actually what you wish".
Yes, the asterisk to indicate required is technically redundant, as others have written. But if it is critical that your users provide accurate information on this page (and that's what required implies), present all choices in an indeterminate start state, including radio buttons. Do not pre-populate anything.
That would ensure that as your first-time user encounters the set of forms each and every one must be filled, checked, and selected ("signed, sealed, delivered...") before the calls to action 'Cancel' and 'Save' become available to them.
It is perfectly okay to my mind to present a set of radio button type controls in an initial none-selected state, even though the physical metaphor of radio button controls implies a type of 'whack-a-mole' behaviour ('one pops in, all other ones pop out' kind of thing). But remember that this is just a metaphor. If you're working within a development kit of sorts, or even a prototype application like Axure RP, UI controls like that usually come as a library 'widget' with black-box behaviour at first. That is an unfortunate constraint, but more often than not it can be overridden. If you have some progressive disclosure going on - i.e. a set of choices presented further down-page depend on an earlier radio button setting, you could even add a 'clear' function to return the radio button set to a nil state.
Looking at your UI example, it occurs to me that all forms are mandatory.
The effect of marking them as such repeatedly (*) gets washed out because the constraint seems universal to all of them - unless your actual form is longer and you're just presenting an excerpt for simplicity, or the form consists of several further pages on which compulsory selections are interspersed with optional ones.
I would therefore guard-rail the user by two things:
A collective headline sub-caption "All selections are required". If all selections are truly required, say so in no uncertain terms.
Disable 'Save', until all selections have been made, up to the very last one. Keep 'Cancel' active; this is how your user can safely exit the form.
By the above an explicit verbal instruction tells your user why the calls to action are blocked. If in addition, present all possible selections initially in an indeterminate state and thus force your user - appropriately - to provide the necessary information with intent and purpose, rather than have them inadvertently accept canned selections in auto-pilot mode.
Note I said initially. The above describes the carte-blanche state in which a first time user should find the form. If there is a function by which the user can instruct the application to remember my settings, all selections become sticky and can be edited (as needed, or simply left as they are) on subsequent visits.
I hope that helps. Best of success!
The problem at hand does not seem to be a question of correct asterisk marking rules, or a literal interpretation of metaphor behind the radio button control.
Rather, the conflict from your description appears to be this:
While the two radio button selection instances are marked as required, the requirement is already fulfilled by pre-populated selection. However the true requirement seems to me that your user should make a meaningful choice, not just any.
So let's first ensure that that actually happens, and then think about appropriate UI presentation.
Pre-populated but required selections can be problematic because a momentarily inattentive user may consent to 'canned' choices that aren't what they would actually choose. The design problem is less a case of "You must make any old choice in order to proceed", and conformity with hard conventions for required selections, but more of "Make sure the radio button selection we pre-populated for your convenience is actually what you wish".
Yes, the asterisk to indicate required is technically redundant, as others have written. But if it is critical that your users provide accurate information on this page (and that's what required implies), present all choices in an indeterminate start state, including radio buttons. Do not pre-populate anything.
That would ensure that as your first-time user encounters the set of forms each and every one must be filled, checked, and selected ("signed, sealed, delivered...") before the calls to action 'Cancel' and 'Save' become available to them.
It is perfectly okay to my mind to present a set of radio button type controls in an initial none-selected state, even though the physical metaphor of radio button controls implies a type of 'whack-a-mole' behaviour ('one pops in, all other ones pop out' kind of thing). But remember that this is just a metaphor. If you're working within a development kit of sorts, or even a prototype application like Axure RP, UI controls like that usually come as a library 'widget' with black-box behaviour at first. That is an unfortunate constraint, but more often than not it can be overridden. If you have some progressive disclosure going on - i.e. a set of choices presented further down-page depend on an earlier radio button setting, you could even add a 'clear' function to return the radio button set to a nil state.
Looking at your UI example, it occurs to me that all forms are mandatory.
The effect of marking them as such repeatedly (*) gets washed out because the constraint seems universal to all of them - unless your actual form is longer and you're just presenting an excerpt for simplicity, or the form consists of several further pages on which compulsory selections are interspersed with optional ones.
I would therefore guard-rail the user by two things:
A collective headline sub-caption "All selections are required". If all selections are truly required, say so in no uncertain terms.
Disable 'Save', until all selections have been made, up to the very last one. Keep 'Cancel' active; this is how your user can safely exit the form.
By the above an explicit verbal instruction tells your user why the calls to action are blocked. If in addition, present all possible selections initially in an indeterminate state and thus force your user - appropriately - to provide the necessary information with intent and purpose, rather than have them inadvertently accept canned selections in auto-pilot mode.
Note I said initially. The above describes the carte-blanche state in which a first time user should find the form. If there is a function by which the user can instruct the application to remember my settings, all selections become sticky and can be edited (as needed, or simply left as they are) on subsequent visits.
I hope that helps. Best of success!
answered 5 hours ago
Andreas MehneAndreas Mehne
1414 bronze badges
1414 bronze badges
"However the true requirement seems to me that your user should make a meaningful choice, not just any." Yes, you found what I was trying to allude to in the OP.
– Arnold Palmer
3 hours ago
@ArnoldPalmer, then don't pre-select an option
– mowwwalker
15 mins ago
add a comment |
"However the true requirement seems to me that your user should make a meaningful choice, not just any." Yes, you found what I was trying to allude to in the OP.
– Arnold Palmer
3 hours ago
@ArnoldPalmer, then don't pre-select an option
– mowwwalker
15 mins ago
"However the true requirement seems to me that your user should make a meaningful choice, not just any." Yes, you found what I was trying to allude to in the OP.
– Arnold Palmer
3 hours ago
"However the true requirement seems to me that your user should make a meaningful choice, not just any." Yes, you found what I was trying to allude to in the OP.
– Arnold Palmer
3 hours ago
@ArnoldPalmer, then don't pre-select an option
– mowwwalker
15 mins ago
@ArnoldPalmer, then don't pre-select an option
– mowwwalker
15 mins ago
add a comment |
You should only mark the field as required if the user must inform something in that field. In your example, since the user is not required to change the value of the fields, you don't need to mark them.
add a comment |
You should only mark the field as required if the user must inform something in that field. In your example, since the user is not required to change the value of the fields, you don't need to mark them.
add a comment |
You should only mark the field as required if the user must inform something in that field. In your example, since the user is not required to change the value of the fields, you don't need to mark them.
You should only mark the field as required if the user must inform something in that field. In your example, since the user is not required to change the value of the fields, you don't need to mark them.
answered 8 hours ago
AlineAline
1,5324 silver badges16 bronze badges
1,5324 silver badges16 bronze badges
add a comment |
add a comment |
From what I have been reading, it is easier on the user to only mark the optional fields. From what you have shown all are required, so why add the noise of the *? By switching to that model, the question becomes solved.
If you need to keep it, you might place it at the end of the label and change the color to a grey.
1
There is an article from nngroup about this: nngroup.com/articles/required-fields . I used to think marking optional fields was better, but in this article they have some good points on why you should always mark them. The most important, I think, is the one about the user having to scroll down to know which fields are mandatory.
– Aline
8 hours ago
add a comment |
From what I have been reading, it is easier on the user to only mark the optional fields. From what you have shown all are required, so why add the noise of the *? By switching to that model, the question becomes solved.
If you need to keep it, you might place it at the end of the label and change the color to a grey.
1
There is an article from nngroup about this: nngroup.com/articles/required-fields . I used to think marking optional fields was better, but in this article they have some good points on why you should always mark them. The most important, I think, is the one about the user having to scroll down to know which fields are mandatory.
– Aline
8 hours ago
add a comment |
From what I have been reading, it is easier on the user to only mark the optional fields. From what you have shown all are required, so why add the noise of the *? By switching to that model, the question becomes solved.
If you need to keep it, you might place it at the end of the label and change the color to a grey.
From what I have been reading, it is easier on the user to only mark the optional fields. From what you have shown all are required, so why add the noise of the *? By switching to that model, the question becomes solved.
If you need to keep it, you might place it at the end of the label and change the color to a grey.
answered 8 hours ago
Chris GriffithChris Griffith
611 bronze badge
611 bronze badge
1
There is an article from nngroup about this: nngroup.com/articles/required-fields . I used to think marking optional fields was better, but in this article they have some good points on why you should always mark them. The most important, I think, is the one about the user having to scroll down to know which fields are mandatory.
– Aline
8 hours ago
add a comment |
1
There is an article from nngroup about this: nngroup.com/articles/required-fields . I used to think marking optional fields was better, but in this article they have some good points on why you should always mark them. The most important, I think, is the one about the user having to scroll down to know which fields are mandatory.
– Aline
8 hours ago
1
1
There is an article from nngroup about this: nngroup.com/articles/required-fields . I used to think marking optional fields was better, but in this article they have some good points on why you should always mark them. The most important, I think, is the one about the user having to scroll down to know which fields are mandatory.
– Aline
8 hours ago
There is an article from nngroup about this: nngroup.com/articles/required-fields . I used to think marking optional fields was better, but in this article they have some good points on why you should always mark them. The most important, I think, is the one about the user having to scroll down to know which fields are mandatory.
– Aline
8 hours ago
add a comment |
There is a potential problem with interpreting the requirements from the user's point of view when you make a pre-selection or default choice in a mandatory field. If none of the choices are suitable to the user and the field is mandatory then you have not allowed the user to indicate that this is the case.
Normal practice would be to make mandatory only those fields that are absolutely required, and with radio buttons to ensure that all potential possibilities are covered (e.g. by using 'others') if the field is mandatory.
Pre-filling information works best when you have some information from the users to provide a strong indication of a preference, otherwise it is possible for people to skip fields that have data entered already when you actually want a confirmation from users that they have read and filled in the details.
add a comment |
There is a potential problem with interpreting the requirements from the user's point of view when you make a pre-selection or default choice in a mandatory field. If none of the choices are suitable to the user and the field is mandatory then you have not allowed the user to indicate that this is the case.
Normal practice would be to make mandatory only those fields that are absolutely required, and with radio buttons to ensure that all potential possibilities are covered (e.g. by using 'others') if the field is mandatory.
Pre-filling information works best when you have some information from the users to provide a strong indication of a preference, otherwise it is possible for people to skip fields that have data entered already when you actually want a confirmation from users that they have read and filled in the details.
add a comment |
There is a potential problem with interpreting the requirements from the user's point of view when you make a pre-selection or default choice in a mandatory field. If none of the choices are suitable to the user and the field is mandatory then you have not allowed the user to indicate that this is the case.
Normal practice would be to make mandatory only those fields that are absolutely required, and with radio buttons to ensure that all potential possibilities are covered (e.g. by using 'others') if the field is mandatory.
Pre-filling information works best when you have some information from the users to provide a strong indication of a preference, otherwise it is possible for people to skip fields that have data entered already when you actually want a confirmation from users that they have read and filled in the details.
There is a potential problem with interpreting the requirements from the user's point of view when you make a pre-selection or default choice in a mandatory field. If none of the choices are suitable to the user and the field is mandatory then you have not allowed the user to indicate that this is the case.
Normal practice would be to make mandatory only those fields that are absolutely required, and with radio buttons to ensure that all potential possibilities are covered (e.g. by using 'others') if the field is mandatory.
Pre-filling information works best when you have some information from the users to provide a strong indication of a preference, otherwise it is possible for people to skip fields that have data entered already when you actually want a confirmation from users that they have read and filled in the details.
answered 1 hour ago
Michael Lai♦Michael Lai
14.9k12 gold badges67 silver badges149 bronze badges
14.9k12 gold badges67 silver badges149 bronze badges
add a comment |
add a comment |
Arnold Palmer is a new contributor. Be nice, and check out our Code of Conduct.
Arnold Palmer is a new contributor. Be nice, and check out our Code of Conduct.
Arnold Palmer is a new contributor. Be nice, and check out our Code of Conduct.
Arnold Palmer is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to User Experience Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fux.stackexchange.com%2fquestions%2f127564%2fare-required-indicators-necessary-for-radio-buttons%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I can’t recall even the last time I saw an * to denote a mandatory field ..
– David
2 hours ago