Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Users do not notice breadcrumb links

Post Reply
jegalink
Posts: 16
Joined: Mon Feb 09, 2015 6:17 pm

Users do not notice breadcrumb links

Unread post by jegalink »

New users to my nuBuilder application often try to use their device back button because they do not notice breadcrumb links. So they think they reach dead ends in the interface, when in fact the links are there to go back to other steps.

Wondering how others have solved this problem and made navigation more intuitive.
toms
Posts: 785
Joined: Sun Oct 14, 2018 11:25 am

Re: Users do not notice breadcrumb links

Unread post by toms »

Hi, how about adding an extra button "Go back" to navigate to the previous screen? This can be done with an "Extra Action Button" or by creating the "Go back"-button in the
function nuLoadBrowseGlobal()
(System Setup -> Header)
jegalink
Posts: 16
Joined: Mon Feb 09, 2015 6:17 pm

Re: Users do not notice breadcrumb links

Unread post by jegalink »

Both your suggestions sound great, but I'm guessing either of those approaches would require a little javascripting, and I don't know javascripting. If anyone can help me out with that, please let me know.
toms
Posts: 785
Joined: Sun Oct 14, 2018 11:25 am

Re: Users do not notice breadcrumb links

Unread post by toms »

This is how I would do it:

Code: Select all

n = window.nuSession.breadCrumb.length;
nuGoToForm(n-2);
You do not have the required permissions to view the files attached to this post.
jegalink
Posts: 16
Joined: Mon Feb 09, 2015 6:17 pm

Re: Users do not notice breadcrumb links

Unread post by jegalink »

Thank you!
Post Reply