Breadcrumb history decisionBreadcrumb or tabbed form or best of both?Too many navigation levels?Is there a better solution to interact with multiple pathways that have the same endpoint, than using multiple breadcrumbs inside tabs or a dropdown?Back button (or similar) and breadcrumbs, or just breadcrumbsHow can I show the user where they are in a non-hierarchical page structure?Alternative to breadcrumbs in navigating groups of contentIs Dynamic Content in Breadcrumb Navigation Bad Practice?Working with location-based breadcrumbs when you are missing some parent pagesShould I use breadcrumbs when they are valid on only a few pages throughout the website?A 'Close' button, a 'Back' button and user journey branches

How many different ways are there to checkmate in the early game?

What is this "Table of astronomy" about?

A torrent of foreign terms

How can I shift my job responsibilities back to programming?

What is the status of the F-1B engine development?

How to create events observer that only call when REST api dispatch events?

Lethal damage while controlling Sower of Discord?

PhD advisor lost funding, need advice

If "more guns less crime", how do gun advocates explain that the EU has less crime than the US?

The cat ate your input again!

Annotating a table with arrows

Can "être sur" mean "to be about" ?

Train from Nagpur to Raipur

Heating Margarine in Pan = loss of calories?

How do some PhD students get 10+ papers? Is that what I need for landing good faculty position?

Is this curved text blend possible in Illustrator?

Is it legal for a company to enter an agreement not to hire employees from another company?

Voltage across a resistor

How to remove ambiguity: "... lives in the city of H, the capital of the province of NS, WHERE the unemployment rate is ..."?

Can I not use QM-AM inequality to solve this?

Why command hierarchy, if the chain of command is standing next to each other?

Is there a standardised way to check fake news?

Why is the result of ('b'+'a'+ + 'a' + 'a').toLowerCase() 'banana'?

What does the phrase "pull off sick wheelies and flips" mean here?



Breadcrumb history decision


Breadcrumb or tabbed form or best of both?Too many navigation levels?Is there a better solution to interact with multiple pathways that have the same endpoint, than using multiple breadcrumbs inside tabs or a dropdown?Back button (or similar) and breadcrumbs, or just breadcrumbsHow can I show the user where they are in a non-hierarchical page structure?Alternative to breadcrumbs in navigating groups of contentIs Dynamic Content in Breadcrumb Navigation Bad Practice?Working with location-based breadcrumbs when you are missing some parent pagesShould I use breadcrumbs when they are valid on only a few pages throughout the website?A 'Close' button, a 'Back' button and user journey branches






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








3















Imagine that we have the following example:



We have a customer that has documents and accounts and we provide two ways to reach the documents or accounts, either from:



MAIN -> CUSTOMER -> Documents -> View Document with ID



MAIN -> CUSTOMER -> Accounts -> View Accounts with ID



and



MAIN -> View all Documents -> View Document with ID



MAIN -> View all Accounts -> View Accounts with ID



My question is, shall we use different breadcrumbs for each view in order for the user to be able to go back to the previous view without using the browser's back button?



e.g.



Main / Customer / Customer ID / Document / Document ID for the first case and



Main / Document / Document ID for the second case?



Is this correct?










share|improve this question







New contributor



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



























    3















    Imagine that we have the following example:



    We have a customer that has documents and accounts and we provide two ways to reach the documents or accounts, either from:



    MAIN -> CUSTOMER -> Documents -> View Document with ID



    MAIN -> CUSTOMER -> Accounts -> View Accounts with ID



    and



    MAIN -> View all Documents -> View Document with ID



    MAIN -> View all Accounts -> View Accounts with ID



    My question is, shall we use different breadcrumbs for each view in order for the user to be able to go back to the previous view without using the browser's back button?



    e.g.



    Main / Customer / Customer ID / Document / Document ID for the first case and



    Main / Document / Document ID for the second case?



    Is this correct?










    share|improve this question







    New contributor



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























      3












      3








      3








      Imagine that we have the following example:



      We have a customer that has documents and accounts and we provide two ways to reach the documents or accounts, either from:



      MAIN -> CUSTOMER -> Documents -> View Document with ID



      MAIN -> CUSTOMER -> Accounts -> View Accounts with ID



      and



      MAIN -> View all Documents -> View Document with ID



      MAIN -> View all Accounts -> View Accounts with ID



      My question is, shall we use different breadcrumbs for each view in order for the user to be able to go back to the previous view without using the browser's back button?



      e.g.



      Main / Customer / Customer ID / Document / Document ID for the first case and



      Main / Document / Document ID for the second case?



      Is this correct?










      share|improve this question







      New contributor



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











      Imagine that we have the following example:



      We have a customer that has documents and accounts and we provide two ways to reach the documents or accounts, either from:



      MAIN -> CUSTOMER -> Documents -> View Document with ID



      MAIN -> CUSTOMER -> Accounts -> View Accounts with ID



      and



      MAIN -> View all Documents -> View Document with ID



      MAIN -> View all Accounts -> View Accounts with ID



      My question is, shall we use different breadcrumbs for each view in order for the user to be able to go back to the previous view without using the browser's back button?



      e.g.



      Main / Customer / Customer ID / Document / Document ID for the first case and



      Main / Document / Document ID for the second case?



      Is this correct?







      breadcrumbs






      share|improve this question







      New contributor



      glarkou 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



      glarkou 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






      New contributor



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








      asked 11 hours ago









      glarkouglarkou

      1183 bronze badges




      1183 bronze badges




      New contributor



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




      New contributor




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

























          2 Answers
          2






          active

          oldest

          votes


















          3














          What do breadcrumbs do?



          • Show how the user navigated to a particular page

          • Show the hierarchy of a page

          NNGroup says:




          For polyhierarchical sites, breadcrumbs should show a single pathway in the site’s polyhierarchy.




          If a page has multiple different parents, identify a canonical path to it in the site hierarchy and show that path in the breadcrumb trail. Don’t attempt to personalize the breadcrumb trail so that it will reflect each user’s individual path within the site hierarchy,




          But, keep edge cases in mind



          If there's change in the breadcrumb trail due to access restrictions, you have to change it to some extent. You can't be showing a guest user the path of a logged in or a admin-level user






          share|improve this answer




















          • 2





            Yes. Just like in the fairy-tale, breadcrumbs don't serve the purpose of showing how you got to that part of the forest. That's useless, because you're already there. They show you how to get out.

            – JonW
            6 hours ago


















          1














          Nielsen Norman group has done a study on breadcrumbs and has set out some basic guidelines.



          Can be found here:
          https://www.nngroup.com/articles/breadcrumbs/



          I think especially the 2nd point applies to your situation.



          I personally feel that you should just use the same breadcrumb for both and figure out which of the two options is best for the user through some testing.
          The way I understand it is that a user who views his/her documents will be logged in from because ID is required to view the document.
          It might be logical to have the document page of the user profile as the last link in the breadcrumb.



          Taking all this into account you could end up with a breadcrumb like this:



          Home -> Customer ID -> Documents -> Document ID



          Hope this helps.






          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
            );



            );






            glarkou 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%2f127418%2fbreadcrumb-history-decision%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            3














            What do breadcrumbs do?



            • Show how the user navigated to a particular page

            • Show the hierarchy of a page

            NNGroup says:




            For polyhierarchical sites, breadcrumbs should show a single pathway in the site’s polyhierarchy.




            If a page has multiple different parents, identify a canonical path to it in the site hierarchy and show that path in the breadcrumb trail. Don’t attempt to personalize the breadcrumb trail so that it will reflect each user’s individual path within the site hierarchy,




            But, keep edge cases in mind



            If there's change in the breadcrumb trail due to access restrictions, you have to change it to some extent. You can't be showing a guest user the path of a logged in or a admin-level user






            share|improve this answer




















            • 2





              Yes. Just like in the fairy-tale, breadcrumbs don't serve the purpose of showing how you got to that part of the forest. That's useless, because you're already there. They show you how to get out.

              – JonW
              6 hours ago















            3














            What do breadcrumbs do?



            • Show how the user navigated to a particular page

            • Show the hierarchy of a page

            NNGroup says:




            For polyhierarchical sites, breadcrumbs should show a single pathway in the site’s polyhierarchy.




            If a page has multiple different parents, identify a canonical path to it in the site hierarchy and show that path in the breadcrumb trail. Don’t attempt to personalize the breadcrumb trail so that it will reflect each user’s individual path within the site hierarchy,




            But, keep edge cases in mind



            If there's change in the breadcrumb trail due to access restrictions, you have to change it to some extent. You can't be showing a guest user the path of a logged in or a admin-level user






            share|improve this answer




















            • 2





              Yes. Just like in the fairy-tale, breadcrumbs don't serve the purpose of showing how you got to that part of the forest. That's useless, because you're already there. They show you how to get out.

              – JonW
              6 hours ago













            3












            3








            3







            What do breadcrumbs do?



            • Show how the user navigated to a particular page

            • Show the hierarchy of a page

            NNGroup says:




            For polyhierarchical sites, breadcrumbs should show a single pathway in the site’s polyhierarchy.




            If a page has multiple different parents, identify a canonical path to it in the site hierarchy and show that path in the breadcrumb trail. Don’t attempt to personalize the breadcrumb trail so that it will reflect each user’s individual path within the site hierarchy,




            But, keep edge cases in mind



            If there's change in the breadcrumb trail due to access restrictions, you have to change it to some extent. You can't be showing a guest user the path of a logged in or a admin-level user






            share|improve this answer













            What do breadcrumbs do?



            • Show how the user navigated to a particular page

            • Show the hierarchy of a page

            NNGroup says:




            For polyhierarchical sites, breadcrumbs should show a single pathway in the site’s polyhierarchy.




            If a page has multiple different parents, identify a canonical path to it in the site hierarchy and show that path in the breadcrumb trail. Don’t attempt to personalize the breadcrumb trail so that it will reflect each user’s individual path within the site hierarchy,




            But, keep edge cases in mind



            If there's change in the breadcrumb trail due to access restrictions, you have to change it to some extent. You can't be showing a guest user the path of a logged in or a admin-level user







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered 10 hours ago









            Shreyas TripathyShreyas Tripathy

            5,3633 gold badges21 silver badges38 bronze badges




            5,3633 gold badges21 silver badges38 bronze badges










            • 2





              Yes. Just like in the fairy-tale, breadcrumbs don't serve the purpose of showing how you got to that part of the forest. That's useless, because you're already there. They show you how to get out.

              – JonW
              6 hours ago












            • 2





              Yes. Just like in the fairy-tale, breadcrumbs don't serve the purpose of showing how you got to that part of the forest. That's useless, because you're already there. They show you how to get out.

              – JonW
              6 hours ago







            2




            2





            Yes. Just like in the fairy-tale, breadcrumbs don't serve the purpose of showing how you got to that part of the forest. That's useless, because you're already there. They show you how to get out.

            – JonW
            6 hours ago





            Yes. Just like in the fairy-tale, breadcrumbs don't serve the purpose of showing how you got to that part of the forest. That's useless, because you're already there. They show you how to get out.

            – JonW
            6 hours ago













            1














            Nielsen Norman group has done a study on breadcrumbs and has set out some basic guidelines.



            Can be found here:
            https://www.nngroup.com/articles/breadcrumbs/



            I think especially the 2nd point applies to your situation.



            I personally feel that you should just use the same breadcrumb for both and figure out which of the two options is best for the user through some testing.
            The way I understand it is that a user who views his/her documents will be logged in from because ID is required to view the document.
            It might be logical to have the document page of the user profile as the last link in the breadcrumb.



            Taking all this into account you could end up with a breadcrumb like this:



            Home -> Customer ID -> Documents -> Document ID



            Hope this helps.






            share|improve this answer





























              1














              Nielsen Norman group has done a study on breadcrumbs and has set out some basic guidelines.



              Can be found here:
              https://www.nngroup.com/articles/breadcrumbs/



              I think especially the 2nd point applies to your situation.



              I personally feel that you should just use the same breadcrumb for both and figure out which of the two options is best for the user through some testing.
              The way I understand it is that a user who views his/her documents will be logged in from because ID is required to view the document.
              It might be logical to have the document page of the user profile as the last link in the breadcrumb.



              Taking all this into account you could end up with a breadcrumb like this:



              Home -> Customer ID -> Documents -> Document ID



              Hope this helps.






              share|improve this answer



























                1












                1








                1







                Nielsen Norman group has done a study on breadcrumbs and has set out some basic guidelines.



                Can be found here:
                https://www.nngroup.com/articles/breadcrumbs/



                I think especially the 2nd point applies to your situation.



                I personally feel that you should just use the same breadcrumb for both and figure out which of the two options is best for the user through some testing.
                The way I understand it is that a user who views his/her documents will be logged in from because ID is required to view the document.
                It might be logical to have the document page of the user profile as the last link in the breadcrumb.



                Taking all this into account you could end up with a breadcrumb like this:



                Home -> Customer ID -> Documents -> Document ID



                Hope this helps.






                share|improve this answer













                Nielsen Norman group has done a study on breadcrumbs and has set out some basic guidelines.



                Can be found here:
                https://www.nngroup.com/articles/breadcrumbs/



                I think especially the 2nd point applies to your situation.



                I personally feel that you should just use the same breadcrumb for both and figure out which of the two options is best for the user through some testing.
                The way I understand it is that a user who views his/her documents will be logged in from because ID is required to view the document.
                It might be logical to have the document page of the user profile as the last link in the breadcrumb.



                Taking all this into account you could end up with a breadcrumb like this:



                Home -> Customer ID -> Documents -> Document ID



                Hope this helps.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 10 hours ago









                AzarkoAzarko

                764 bronze badges




                764 bronze badges























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









                    draft saved

                    draft discarded


















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












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











                    glarkou 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%2f127418%2fbreadcrumb-history-decision%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

                    Sahara Skak | Bilen | Luke uk diar | NawigatsjuunCommonskategorii: SaharaWikivoyage raisfeerer: Sahara26° N, 13° O

                    The fall designs the understood secretary. Looking glass Science Shock Discovery Hot Everybody Loves Raymond Smile 곳 서비스 성실하다 Defas Kaloolon Definition: To combine or impregnate with sulphur or any of its compounds as to sulphurize caoutchouc in vulcanizing Flame colored Reason Useful Thin Help 갖다 유명하다 낙엽 장례식 Country Iron Definition: A fencer a gladiator one who exhibits his skill in the use of the sword Definition: The American black throated bunting Spiza Americana Nostalgic Needy Method to my madness 시키다 평가되다 전부 소설가 우아하다 Argument Tin Feeling Representative Gym Music Gaur Chicken 일쑤 코치 편 학생증 The harbor values the sugar. Vasagle Yammoe Enstatite Definition: Capable of being limited Road Neighborly Five Refer Built Kangaroo 비비다 Degree Release Bargain Horse 하루 형님 유교 석 동부 괴롭히다 경제력

                    19. јануар Садржај Догађаји Рођења Смрти Празници и дани сећања Види још Референце Мени за навигацијуу