Hi All,
I have 2 site pages A and B. There is a link on page A and on click of the link the contents in site page B should be displayed. Can anyone please help me how to achieve this?
Discussion posts and replies are publicly visible
you can create a report object which uses an interface(B) you create and then on your site interface(A) use a!reportLink which will navigate the user to the report you created without leaving the tab.
https://docs.appian.com/suite/help/23.4/Report_Link_Component.html
Hi Kiran,
I need to navigate to site page B from site page A on click of the link.
Hi shubhamy0005 ,
if you are using Appian version 23.4 then you can directly use a!urlForSite function within the a!safelink to redirect to stie pages. Or you can construct the url for site page using "https://your domain/suite/sites/your site name/page/page name" and use it in safe link.
a!safeLink( uri: a!urlForSite( sitePage: 'site!{f876ef5c-fb6d-413c-9575-99d8e53eb869}site.pages.B' ), openLinkIn: "SAME_TAB" )