Dynamically Mandatory Attributes - Problem with indication (RTC V3.0.1.1)
Hi All, I followed the wiki and enabled the dynamic attribute based on another enumeration value. But the * mark doesnt appear to indicate the mandatory attribute. I am using RTC V3.0.1.1 . I noticed that this issue is fixed - but is it in a later version of 3.0.1?
Thanks. |
2 answers
Ralph Schoon (63.5k●3●36●46)
| answered Mar 04 '13, 7:42 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER
Valli, you can find the latest versions here: https://jazz.net/downloads/rational-team-concert/releases/ if you found the work item, only that can tell you where it got fixed.
|
Script is :
<pre>
dojo.provide("com.ibm. workitems.providers.New");
dojo.require("com.ibm.team. workitem.api.common. WorkItemAttributes");
(function() {
var WorkItemAttributes= com.ibm.team.workitem.api. common.WorkItemAttributes;
dojo.declare("com.ibm. workitems.providers.New", null, {
matches: function(workItem, configuration) {
var RAG= workItem.getValue("exec_ Indicator");
var state= workItem.getValue( WorkItemAttributes.STATE);
console.log("RAG Value is " + RAG);
console.log("State Value is " + state);
if ((RAG === "WorkItemMeasurement.literal. l2") && (state ===
"RiskWorkflow.state.s2"))
{
console.log("success");
return true;
}
}
});
})();
|
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.