- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2023 09:10 AM
I have been tasked to create a widget 'Something is broken' button next to main search widget in the ESC. The 'Something is broken' is generally the incident record producer to create incident. I am trying to find a solution, where I have little to no experience in creating widgets and portal design.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2023 02:27 AM
@athavichith Remember that Employee Center has the ability to structure options like this in the Mega Menu
I find this to be a better design and user experience that creating a custom widget.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2023 02:42 PM - edited 06-27-2023 02:45 PM
Hello,
The simplest thing you can do is create a link tag
<a href="[link to record producer]" class="my-class">
and use the class to style it the way you need to
.my-class{
text-decoration: none;
padding: 1rem;
border: 3px solid red;
border-radius: 5px;
}
For the link to the record producer:
- If you already have the record producer page in your portal set up, just put that link in the href.
- Otherwise, you can also go to the record producer in the service catalog and use that link (although it won't fit with the theme of the rest of your portal)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2023 02:27 AM
@athavichith Remember that Employee Center has the ability to structure options like this in the Mega Menu
I find this to be a better design and user experience that creating a custom widget.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2023 11:18 AM - edited 06-28-2023 11:21 AM
Hello @athavichith ,
You can also create a quick link for this instead of a custom widget. SS:
Thank you!