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.
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Users do not notice breadcrumb links
-
- Posts: 785
- Joined: Sun Oct 14, 2018 11:25 am
Re: Users do not notice breadcrumb links
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)
function nuLoadBrowseGlobal()
(System Setup -> Header)
-
- Posts: 16
- Joined: Mon Feb 09, 2015 6:17 pm
Re: Users do not notice breadcrumb links
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.
-
- Posts: 785
- Joined: Sun Oct 14, 2018 11:25 am
Re: Users do not notice breadcrumb links
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.
-
- Posts: 16
- Joined: Mon Feb 09, 2015 6:17 pm