Customer Portal - My Tickets widget
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 11:25 PM
How can I display Short Description of a Catalog Item on the My Tickets widget
Incidents are display short description
Catalog requests are displaying the Catalog Item name. I would like to display the Short Description of the Request

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2024 11:47 PM - edited 03-11-2024 11:53 PM
Hi @Bret Smith the short description will be displayed as secondary field if short description is present on the request. If you want short description to be displayed as primary for request then take a look at below widget which is used to display data
you would need to clone this widget and update the HTML part highlighted below URL which is displaying item name
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2024 03:15 PM
Shouldn't I be looking at the "My Tickets" widget instead of the "My Requests" or are you saying "My Requests" widget shows the coding that displays Request short description?
I dont know what you want me to look at when you said "...take a look at below widget which is used to display data"
<div class="primary-display">
<a href="?id={{::item.url.id}}&table={{::item.url.table}}&sys_id={{::item.url.sys_id}}" sn-focus="{{::item.highlight}}" aria-label="{{::item.display_field}} , {{::item.display_number}}"> {{::item.display_field}} </a>
</div>
<small class="text-muted" ng-if="c.options.show_secondary == 'true'">
<div ng-repeat="f in item.secondary_displays" class="secondary-display">
<span >{{::f.display_value}}</span>
</div>
</small>
I dont know where to replace 'item name' (whatever is displaying in the first column) with the short description of the Request. The short description of the Incident is being used in the first column of 'My Tickets'

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2024 06:33 PM
Hi @Bret Smith yes, if your not sure which widget it is, ctrl right click on that ticket page, you will get the widget name.
Harish