
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2015 07:49 AM
We are wanting to make the asterisk that is next to the tab name red when there are mandatory fields on that tab. For example, when our users select resolved on Incident, there are closure fields that are required under the closure info tab. A tiny black asterisk shows up next to Closure Information, but they want it to be more obvious. Where is this setting or how can I change this asterisk to red?
Thanks!
Allison
Solved! Go to Solution.
- Labels:
-
User Interface (UI)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2015 08:23 AM
It doesn't appear there's a setting anywhere that controls it, but you could do it in an onload client script using the following.
$$('span.tabs2_tab span.label_description').each(function(e){
e.style.color = 'red';
});

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2015 08:23 AM
It doesn't appear there's a setting anywhere that controls it, but you could do it in an onload client script using the following.
$$('span.tabs2_tab span.label_description').each(function(e){
e.style.color = 'red';
});

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2015 09:05 AM
Worked perfectly! Thanks, Brad!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2018 07:39 AM
Hello,
Is there a way to turn the tabs red when a mandatory field is blank?