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 do I get actual values from a Jacobian matrix?
How to translate old German (before 1920)
Co-curricular lessons between geometry and chemistry?
Grid Puzzle - Paint
Can increasing the amount of training data make overfitting worse?
Is there a bulletproof way to know a file has been successfully decrypted?
What does Ambassador Taylor have to do with anything?
Is the genre 'fantasy' still fantasy without magic?
Adult-sized alien child and child-sized alien adult
Phrase/Word-pair for a variant of master-slave relationship
What is the maximum distance you can cause damage from?
Has Donald Duck ever had any love interest besides Daisy?
A robot surviving on top of a 3x3 platform
TV Pilot or Movie, 80s, misfit team with powers
Does a resurrected wizard remember his prepared spells?
On the method described by Purcell for finding the magnetic field by measuring the force on a test particle
Why does Rome municipality seem to have a hard time maintaining the city?
Does the Scatter spell actually scatter the targets?
Why were some early PC 3D cards unsuitable for 2D graphics?
Insets around a clock
Are results that are derived simply by using more computational power publishable?
What is an example of a sequence which "thins out" and is finite?
SMD ceramic capacitor 0805 vs 1206
Elsewhere in the beginning of a sentence
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;
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
add a comment
|
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
add a comment
|
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
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
breadcrumbs
asked Aug 12 at 8:18
glarkouglarkou
1833 bronze badges
1833 bronze badges
add a comment
|
add a comment
|
2 Answers
2
active
oldest
votes
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
8
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♦
Aug 12 at 13:06
add a comment
|
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.
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/4.0/"u003ecc by-sa 4.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
);
);
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%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
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
8
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♦
Aug 12 at 13:06
add a comment
|
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
8
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♦
Aug 12 at 13:06
add a comment
|
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
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
answered Aug 12 at 9:00
Shreyas TripathyShreyas Tripathy
6,1295 gold badges22 silver badges38 bronze badges
6,1295 gold badges22 silver badges38 bronze badges
8
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♦
Aug 12 at 13:06
add a comment
|
8
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♦
Aug 12 at 13:06
8
8
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♦
Aug 12 at 13:06
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♦
Aug 12 at 13:06
add a comment
|
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.
add a comment
|
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.
add a comment
|
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.
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.
answered Aug 12 at 8:49
AzarkoAzarko
864 bronze badges
864 bronze badges
add a comment
|
add a comment
|
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%2f127418%2fbreadcrumb-history-decision%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