Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

Issue with script based calculated value in RTC 3.0.1.3.

I have created three new attributes of type "Duration" --  "QA Estimate", "Dev Estimate" and "Total Estimate". The "Total Estimate" attribute uses calculated value from the script TimeEstCalc.js and has dependencies on "QA Estimate" and "Dev Estimate" attributes.

Here is the TimeEstCalc.js script:

dojo.provide("com.example.common.TimeEstCalc");

 

(function() {

    dojo.declare("com.example.common.TimeEstCalc", null, {

 

        getValue: function(attribute, workItem, configuration) {

 

                                             return workItem.getValue("devEstimate") + workItem.getValue("qaEstimate");

 

        }

    });

})();

After I enter values into "QA Estimate" and "Dev Estimate" fields in the newly created work item, and trying to save the work item, I get the error:

The value of attribute 'Total Estimate' is not valid. Enter a valid duration (w = weeks, d = days, h = hours, m = minutes).

So looks like the "Total Estimate" attribute expects values to be entered instead of returning the calculated value based on the script.

I have script execution enabled in teamserver.properties.

Not sure what I am doing wrong.

Anatoliy

1

0 votes


Accepted answer

Permanent link
This works for me (on 3.0.1.1).  I assume you are using the "Time Duration" Presentation Kind.  Do you see anything happen in the Total Estimate attribute when a value is entered in devEstimate or qaEstimate?  If not, double check the ids of the attributes you created are "devEstimate" and "qaEstimate" (case sensitive).  If they are not, change your script to exactly match the ids.  Also double check that the dependencies on these two attributes are set for the "Total Estimate" attribute.  If still no luck, screen shots of the "Edit Custom Attribute" and "Edit Presentation" dialogs might help.
Anatoliy Khludov selected this answer as the correct answer

1 vote


One other answer

Permanent link
Hi Brian, I was using "Time Estimate" Presentation Kind in "Edit Presentation" section. After changing it to "Time Duration" for all three attributes, everything worked as expected! The "Total Estimate" value gets calculated immediately after I enter values into the "Dev Estimate" and " QA Estimate" fields. Thank you so much for your help !
Anatoliy

0 votes

Your answer

Register or log in to post 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.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 10,935
× 152

Question asked: Nov 29 '12, 3:11 p.m.

Question was seen: 6,810 times

Last updated: Apr 02 '13, 4:45 a.m.

Confirmation Cancel Confirm