- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2024 01:53 PM
I hope that there is someone that can assist me with trying to solve this issue. First off I want to say that I am not programmer by any means. With that said, I do understand basic code. What I am trying to do is edit the server side of a cloned Approvals widget so that I can get the "item" field from a requested item to display with the approval. I have added a couple of Screen shots of what I tried.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2024 08:48 PM
Hi @ccurtis ,
For that you need to clone the OOTB approval widget and need to modify the below
in sever side script you need to add the
in HTML
need to add below lines
<div ng-if="approval.task.name"><label>${Catalog item}</label> {{::approval.task.name}}</div>
Output:
If my response proves useful, please indicate its helpfulness by selecting "Accept as Solution" and " Helpful.
Thanks,
BK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-05-2024 08:48 PM
Hi @ccurtis ,
For that you need to clone the OOTB approval widget and need to modify the below
in sever side script you need to add the
in HTML
need to add below lines
<div ng-if="approval.task.name"><label>${Catalog item}</label> {{::approval.task.name}}</div>
Output:
If my response proves useful, please indicate its helpfulness by selecting "Accept as Solution" and " Helpful.
Thanks,
BK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-06-2024 06:41 AM
Bhavya11 thank you for this, I have been banging my head against the wall on this for 2 days.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-06-2024 09:00 PM
You're welcome! I'm glad I could help