Catalog item or knowledge article as a link/redirect

Miko_aj Buczek
Tera Contributor

Hello every one.

 

Its possible to make a catalog item or a knowledeg article as a redirect to url ?

I want to make a tile "Knowledeg article" as a redirect to external link without using "Quick Links" on the right side.

I need:

1. Tile with record producer, 2. Tile with a redirect link. 3. Another tile with a redirect link

 

Miko_ajBuczek_0-1669110218749.png

Please, assist.

Thank you

 

1 ACCEPTED SOLUTION

Mark Roethof
Tera Patron
Tera Patron

Tested with below, works immediately.

 

Screenshot (140).png

Screenshot (141).png

 

Kind regards,
Mark

 

Kind regards,

 

Mark Roethof

Independent ServiceNow Consultant

10x ServiceNow MVP

---

 

~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

LinkedIn

View solution in original post

4 REPLIES 4

johnfeist
Mega Sage
Mega Sage

Hi Miko_aj,

You can do that via a custom variable.  What makes everything happen is that for the default value, you need to identify a widget.  Creating a widget is really simple.  Go to Service Portal | Widgets.  You may find an existing widget that does most of what you need.  You can copy that or just create a new one.  The Body template will look like this

<div>
<a href="your url" target="_blank">Click here to ...</a>
</div>

target="_blank"  makes the link open in a new tab.  There is no server script and you Client controller looks like this

api.controller=function() {
  /* widget controller */
  var c = this;
};

That's about all there si to it.

Hope that helps.

:{)

Helpful and Correct tags are appreciated and help others to find information faster

Mark Roethof
Tera Patron
Tera Patron

Hi there,

 

Have you tried creating a Content Item for this? Should work fine (also just double checked). Just select as Content type "External Content".

When adding Connected Content to the Topic, just select Catalog Item, and you can enter your Content Item.

 

Kind regards,
Mark

 

Kind regards,

 

Mark Roethof

Independent ServiceNow Consultant

10x ServiceNow MVP

---

 

~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

LinkedIn

Mark Roethof
Tera Patron
Tera Patron

Tested with below, works immediately.

 

Screenshot (140).png

Screenshot (141).png

 

Kind regards,
Mark

 

Kind regards,

 

Mark Roethof

Independent ServiceNow Consultant

10x ServiceNow MVP

---

 

~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

LinkedIn

Miko_aj Buczek
Tera Contributor

@Mark Roethof 

Thank you, that is what i need! 

Regards