How can we add fields for Change requests under my active items widget
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2024 03:52 AM
Hello,
Can we add the additional fields in My active items widget?
For example: in change request I want to display Configuration Item, category, sub category, Description - to view all the information related to the request on the same page.
In Highlighted space can we add Description,.. fields
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2024 06:25 AM
Hi,
To customize this page, you need to access the following module: To-dos Configuration.
Considering you need to alter an approval page that is in the "Open" tab, you should access the following record:
In the related list "To-dos Widget Mapping," the relationship of which widget will appear on the approval page is established. What determines which page will appear is the condition contained in the "Condition" field.
You can see that there are records with different conditions; each condition displays the corresponding widget in the "Widget" field.
What you should do is create a record in this related list with the condition being: Source table is change_request and in the Widget field, a clone of the "Todos Approval" Widget.
The clone of this widget should be analyzed and customized according to your needs.
Doing this can be complicated at first, but let me know if you have any questions, and I can help you.
If my answer helped you in any way, please mark it as correct/helpful 🙂
Regards,
Isaac Vicentini.
MVP 2025 ✨
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2024 05:00 AM
Hi @Isaac Vicentini,
Thanks for the help and it is very helpful for me.
Could you please help me for the below issue
I have modified the server script as below
and I'm getting an output in continuous line as below
Any idea how to get that in new lines
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2024 09:42 AM
Instead of breaking the line on the server-side with "\n", try performing the line break in HTML with "<br>".
Identify in your HTML where the variable {{data.approvalText}} is used, replace it with something like:
<p>Do you want to approve the following:</p><br>
<p>Short Description: {{data.shortDescription}}</p><br>
<p>Description: {{data.description}}</p><br>
<p>Category: {{data.category}} </p><br>
The code above is just an example. See the best way to do this in your HTML.
If my previous solution helped you customize the Change approval page, please mark it as correct or helpful so it can assist others as well. 🙂
Regards,
Isaac Vicentini
MVP 2025 ✨