Highlight the Form Section Name
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2024 11:57 PM
Hi all,
I am trying to highlight the form section's name because when the form section is highlighted with certain color the background name of the form section is not clearly visible.
Attached screenshots for reference.
Below is the onChange Client script
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
if (g_form.getValue('u_workaround_status') == 'Available') {
var tabs = document.getElementsByClassName('tabs2_tab');
tabs[1].style.backgroundColor = '#738678';
}
else{
var tabss = document.getElementsByClassName('tabs2_tab');
tabss[1].style.backgroundColor = 'white';
}
}
normal 'Workaround'
after Highlighting it, workaround is not clearly readable
Could anyone please assist to achieve this? Thanks.
----------------------------------------------------------------
Mark this as Helpful / Accept the Solution if this helps.
Mark this as Helpful / Accept the Solution if this helps.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2024 07:39 PM