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
|