How to update navigatio after cloning page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā09-25-2025 06:52 AM
Hi, I have cloned an oob Portal page A to page B and created page route maps to point all widget from A to B. now how do I redirect the navigation? Suppose some menu item/widget/button were leading users to page A, how will these route to page B now? Also how will I find these item/widget/button that were leading users to page A in the first place?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā09-25-2025 08:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā09-25-2025 09:27 AM
Thanks for your response. Page route didn't take care of the navigation and that's what the SN documentation also says.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā09-25-2025 10:23 AM - edited ā09-25-2025 10:24 AM
@archie5 On page A add a widget with no HTML OR Server code but just client code to redirect to pageB.
Client Controller:
window.location.href=ā/sp?id=pageBā
This will take care of all navigations.
Replace sp with tour portal suffix and page id of B.
Please mark the answer correct/helpful accordingly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā09-26-2025 08:31 AM
