Why this script based default value on the description field has no effect?
Hi,
I have the following script:
dojo.provide("com.example.DefaultValueProvider");
(function() {
dojo.declare("com.example.DefaultValueProvider", null, {
getDefaultValue: function(attribute, workItem, configuration) {
return "test";
}
});
})();
(function() {
dojo.declare("com.example.DefaultValueProvider", null, {
getDefaultValue: function(attribute, workItem, configuration) {
return "test";
}
});
})();
I attached this script to the description field but nothing happens.