We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b867bf commit 6f1bdbfCopy full SHA for 6f1bdbf
Client-Side Components/Client Scripts/Change incident Number label color based on priority/Script.js
@@ -0,0 +1,19 @@
1
+function onLoad ()
2
+{
3
+ var aPriority = g_form.getValue('priority');
4
+ var label = g_form.getLable('number');
5
+ label.style.backgroundColor = "lightblue";
6
+ if(aPriority==1)
7
+ {
8
+ label.style.color = "red";
9
+ }
10
+ else if (aPriority==2)
11
12
+ label.style.color = "yellow";
13
14
+ else
15
16
+ label.style.color = "blue";
17
18
+}
19
+
Client-Side Components/Client Scripts/Change incident Number label color based on priority/readme.md
@@ -0,0 +1,2 @@
+Write Client Script
+Change Incident Number Lable color based on priority
0 commit comments