Hi,
I saw in stunnware jscript code for coloring the options of a picklist, but
can I maintain the color after the selection so it stays on the form after
the
pickup? (The CRM replaces the colors with background blue and white text)
Thanks.
//TODO: Replace <name of your picklist field> with the schema name of the
picklist in question.
var list = crmForm.all.<name of your picklist field>;
//using the first option here, you need to find the one you need.
var option = list.options[0];
//Set the background color to red.
option.style.backgroundColor = "#FF0000";
//Set the text color to white.
option.style.color = "#FFFFFF";