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;








1















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.



enter image description here



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?










share|improve this question









New contributor



Arnold Palmer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • I can’t recall even the last time I saw an * to denote a mandatory field ..

    – David
    2 hours ago

















1















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.



enter image description here



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?










share|improve this question









New contributor



Arnold Palmer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • I can’t recall even the last time I saw an * to denote a mandatory field ..

    – David
    2 hours ago













1












1








1








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.



enter image description here



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?










share|improve this question









New contributor



Arnold Palmer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











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.



enter image description here



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






share|improve this question









New contributor



Arnold Palmer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










share|improve this question









New contributor



Arnold Palmer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








share|improve this question




share|improve this question








edited 3 hours ago







Arnold Palmer













New contributor



Arnold Palmer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








asked 9 hours ago









Arnold PalmerArnold Palmer

83 bronze badges




83 bronze badges




New contributor



Arnold Palmer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




New contributor




Arnold Palmer is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

















  • 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





I can’t recall even the last time I saw an * to denote a mandatory field ..

– David
2 hours ago










4 Answers
4






active

oldest

votes


















2














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:



  1. A collective headline sub-caption "All selections are required". If all selections are truly required, say so in no uncertain terms.


  2. 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!






share|improve this answer

























  • "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


















2














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.






share|improve this answer
































    0














    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.






    share|improve this answer




















    • 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


















    0














    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.






    share|improve this answer



























      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.









      draft saved

      draft discarded


















      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









      2














      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:



      1. A collective headline sub-caption "All selections are required". If all selections are truly required, say so in no uncertain terms.


      2. 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!






      share|improve this answer

























      • "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















      2














      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:



      1. A collective headline sub-caption "All selections are required". If all selections are truly required, say so in no uncertain terms.


      2. 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!






      share|improve this answer

























      • "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













      2












      2








      2







      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:



      1. A collective headline sub-caption "All selections are required". If all selections are truly required, say so in no uncertain terms.


      2. 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!






      share|improve this answer













      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:



      1. A collective headline sub-caption "All selections are required". If all selections are truly required, say so in no uncertain terms.


      2. 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!







      share|improve this answer












      share|improve this answer



      share|improve this answer










      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

















      • "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













      2














      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.






      share|improve this answer





























        2














        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.






        share|improve this answer



























          2












          2








          2







          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.






          share|improve this answer













          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 8 hours ago









          AlineAline

          1,5324 silver badges16 bronze badges




          1,5324 silver badges16 bronze badges
























              0














              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.






              share|improve this answer




















              • 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















              0














              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.






              share|improve this answer




















              • 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













              0












              0








              0







              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.






              share|improve this answer













              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.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              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












              • 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











              0














              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.






              share|improve this answer





























                0














                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.






                share|improve this answer



























                  0












                  0








                  0







                  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.






                  share|improve this answer













                  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.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 1 hour ago









                  Michael LaiMichael Lai

                  14.9k12 gold badges67 silver badges149 bronze badges




                  14.9k12 gold badges67 silver badges149 bronze badges























                      Arnold Palmer is a new contributor. Be nice, and check out our Code of Conduct.









                      draft saved

                      draft discarded


















                      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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

                      Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

                      Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367