How to highlight VIP user name list view of workspace?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2024 01:05 PM
Hi Team,
I'm working on Procurement workspace. How can I highlight VIP user in workspace. please let me know any alternative solution for the same. I tried below way:
In client script, added workspace view name for OOB VIP hight light client script - DOM manipulations are not work on work space view.
Please let me know any alternative solution for the same.
Note: I've checked all community links, So, please provide work around solutions/possible solutions. Because, no one see once it is answered. Please understand.
Thank you for understanding in advance.
Thanks & Regards,
Prasanna Kumar
#workspace #vipflag
- Labels:
-
Architect
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2024 11:33 PM
Hello @prasannakumard,
use any server side script i.e., business rule or script include to mark VIP users with a specific field or tag:
if (current.vip) {
current.addQuery('vip', true);
}
OR use create a new UI Action for the target table and use below code:
if (current.vip) {
// Add custom class to highlight VIP
g_form.addInfoMessage('VIP User');
}
If your req. related to any user name field like requested for and you need to highlight that when user is vip, then you can give that info from user table record in script include and call the logic from client script using info/ error messages or using show field msg true or using color style.
Thank you!!
Dnyaneshwaree Satpute
Tera Guru

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2024 05:52 AM
@Dnyaneshwaree Thank you for providing solution. But, I've tried like below:
Still, List layout level of workspace not working and don't have any possible solutions.
Thanks & Regards,
Prasanna Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2024 12:09 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2024 05:54 AM
@Sid_Takali Thank you for your help. This post already reviewed and implemented but, Still Highlighting VIP on List layout not working.
Thanks & Regards,
Prasanna Kumar