How can we make the text of short description and description of the change request table bold.

Adithya S Uday1
Tera Contributor

 How can we make the short description text bold and red in the Change Request table if CAB approval is required?

2 REPLIES 2

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @Adithya S Uday1 

 

No, that's not possible, but you can add the field decoration, similar to how we use the VIP flag.

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]

****************************************************************************************************************

Shivalika
Mega Sage

Hello @Adithya S Uday1 

 

You can configure style - but these fields are inherited from Task table, so you should not configured it at the dictionary level. 

 

You can instead use On load client script on change request table. You can add whatever conditions you want and add below script - 

 

function onLoad() {

 

        var shortDescField = g_form.getElement('short_description');

        if (shortDescField) {

            shortDescField.style.color = "red";

            shortDescField.style.fontWeight = "bold";

        

 

    }

}

 

Kindly mark my answer as helpful and accept solution if it helped you in anyway. This will help me be recognized for the efforts and also move this questions from unsolved to solved bucket. 

 

Regards,

 

Shivalika 

 

My LinkedIn - https://www.linkedin.com/in/shivalika-gupta-540346194

 

My youtube - https://youtube.com/playlist?list=PLsHuNzTdkE5Cn4PyS7HdV0Vg8JsfdgQlA&si=0WynLcOw

NeEISQCY