- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2022 04:22 PM
How do you change the column heading for the My Request Widget? OOB it says Request, but we made a clone for "Incidents" and would like to change the label to "Incident" instead of "Request".
Solved! Go to Solution.
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2022 06:32 PM
Hi in My request widget you have the below line in HTML
<span role="columnheader" class="col-xs-6 padder-r-none padder-l-none">${Request}</span> //change Request to Incident here that should do
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2022 04:23 PM
Hi Thomas,
Image is broken can you upload again please
***Mark Correct or Helpful if it helps.***

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2022 04:29 PM
Try This.
Step1. Find the label HTML
Step2. In your widget client script, catch and change it.
// Change Field label
// Timeout for data to be loaded
setTimeout(function(){
document.querySelector('div[aria-label="Sort by Short description"]').innerText = "Long Description"
},3000);
Mark Correct or Helpful if it helps.
Thanks,
Yousaf
***Mark Correct or Helpful if it helps.***

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2022 06:32 PM
Hi in My request widget you have the below line in HTML
<span role="columnheader" class="col-xs-6 padder-r-none padder-l-none">${Request}</span> //change Request to Incident here that should do
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-15-2022 10:39 AM
That worked. Thank you!