Getting value of enum id value in javascript
I am inside a javascript validation function,
validate: function(attribute, workItem, configuration) ;
I get the enum id with
var enumId = workItem.getValue("Same validation level");
How can i get the String associated with the enumId?
|
Accepted answer
workitem.getLabel("Same validation level");
Marcelo Bilezker selected this answer as the correct answer
|
One other answer
getLabel("zzz")... so Obvious,,,, Thanks!
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.