Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Community Forums Add Breadcrumbs and back button

Aashish5
Tera Contributor

User Friendliness:

  1. Forums, topics should be user friendly, easy to access once other forums are removed.
  2. Add breadcrumbs so that user can jump into any topic smoothly from current content/topic/blog.
  3. Add back button so that user can navigate back to previous topic/content/blog.

Can we create the breadcrumbs and the back button?

1 ACCEPTED SOLUTION

Community Alums
Not applicable

Hi @Aashish ,

I'm hoping you should just be able to add the "breadcrumbs" widget to each of the pages and it will solve for this.

1) Ctrl + Right Click on the widget to get this context menu, and select "Page in Designer"

find_real_file.png

2) Type "bread" in the "Filter Widget" box on the top right of the page. Locate the widget that is just "breadcrumbs"

find_real_file.png

3) Drag and drop that widget at the top of the container

find_real_file.png

4) Do that for each of your pages, and see if this out-of-the-box breadcrumbs widget does what you need it to do.

 

OR in the widget :

Please try the below code :

<div>
<a onClick="window.history.go(-1)" style="cursor: pointer;">Back</a>
</div>

 

Mark my answer correct & Helpful, if Applicable.

Thanks,

Sandeep

View solution in original post

1 REPLY 1

Community Alums
Not applicable

Hi @Aashish ,

I'm hoping you should just be able to add the "breadcrumbs" widget to each of the pages and it will solve for this.

1) Ctrl + Right Click on the widget to get this context menu, and select "Page in Designer"

find_real_file.png

2) Type "bread" in the "Filter Widget" box on the top right of the page. Locate the widget that is just "breadcrumbs"

find_real_file.png

3) Drag and drop that widget at the top of the container

find_real_file.png

4) Do that for each of your pages, and see if this out-of-the-box breadcrumbs widget does what you need it to do.

 

OR in the widget :

Please try the below code :

<div>
<a onClick="window.history.go(-1)" style="cursor: pointer;">Back</a>
</div>

 

Mark my answer correct & Helpful, if Applicable.

Thanks,

Sandeep