Built something you're proud of? Tell the story. A quick G2 review of App Engine or Build Agent helps other developers see what's possible on ServiceNow. Share your experience.

Mridul Srivast1
Tera Explorer

function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
var Priority = g_form.getValue('priority');
if(Priority=='3')
{
g_form.getElement('state').setStyle({color:"green"});
}
else if(Priority=='2')
{
g_form.getElement('state').setStyle({color:"orange"});
}
else if(Priority=='1')
{
g_form.getElement('state').setStyle({color:"red"});
}

}

Version history
Last update:
‎06-10-2022 03:07 AM
Updated by: