When User Click on Catalog Item, he Should get Redirected to Another URL To raise the Request.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2023 09:48 PM
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 ---
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2023 06:54 AM - edited 09-28-2023 06:54 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2023 10:18 PM
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.