When User Click on Catalog Item, he Should get Redirected to Another URL To raise the Request.

Shashikant Pati
Tera Contributor

When User clicks on Catalog Item on SP portal, User should get re-directed to below link and should restrict user to raise the request on SP Portal.

 

Demo link-- https://www.google.com

 

Answer---

 

For this Requirement you Can write on Load catalog Client script. For particular catalog Item which you want to Redirect.

 

Script--

function onLoad() {
var redirectURL=" https://www.google.com";
top.window.location=redirectURL;

}

 

Reference Screen Shot ---

ShashikantPati_0-1695876259946.png

 

 

2 REPLIES 2

Satyapriya
Mega Sage

You can  add a Rich Text Label variable in the catalog item and in that variable you can mention the link which will redirect to the particular page.

Regards,

Satyapriya

yes, I agree @Satyapriya, but our requirement is when we click on catalog Item, then It should get redirect to that particular link. I hope you got this concept.