It's all about the answers!

Ask a question

Dynamically Mandatory Attributes - Problem with indication (RTC V3.0.1.1)


VK L (8177147159) | asked Mar 04 '13, 4:04 a.m.

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



permanent link
Ralph Schoon (62.0k33643) | 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.

permanent link
VK L (8177147159) | answered Mar 05 '13, 7:53 a.m.
edited Mar 05 '13, 7:54 a.m.
 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


Register or to post your answer.