Change color of each choices in a choice field dropdown

divyavashishtha
Tera Contributor

How can i change color of each choices in my choice field dropdown.   eg.,

find_real_file.png

Thanks in advance!

5 REPLIES 5

Nirosha Uddandi
Kilo Guru

write an onload client script on incident as 

function onLoad() {
g_form.getOption("category", "software").style.backgroundColor = "yellow";

g_form.getOption("category","inquiry").style.backgroundColor = "red";
}