Is it possible to have the title displayed at the top of a ticket at all times?
I mostly hear complaints about it from approvers. They click on the URL in their notification and are brought directly to the RA to approve. Then to see what the subject/title of the ticket is, they have to click to the general tab to see that data. It is included in the e-mail they get the URL from, but they want to see it on the portal as well.
Ideally, I would like to add it at the very top of the ticket, just above the different tabs. Basically it would like the below image, but after the ID number it would include the text of the title.
Is it possible to do this? If so, would I be able to do it with some custom JS and have it apply to all work item types or would they all require different scripts?
Best Answer
-
Davin_Clouthier Customer Adept IT Monkey ✭✭We can do this if you have a ServiceRequest.js in your custom space. You can just add
pageForm.view.title = pageForm.view.title + " - " + pageForm.viewModel.Title
Altho I don't know how supported this method is. Good luck fellas! Looks something like this when done:
2
Answers
Altho I don't know how supported this method is. Good luck fellas! Looks something like this when done:
Here's a sample screenshot:
It looks pretty benign to me, but I have never touched JS before working on this project. So my knowledge is very minimal at this point.
Can this code be applied to IRs as well?