[closed] retrieve category[team area] using javascript
Hi All,
I am trying to retrieve "Work Item Category" value using javascript. could you guide me on the workitem.getvalue method for this attribute? I am getting dojo loader errors for the following trial (no specific error):
var tags= workItem.getValue(WorkItemAttributes.category)
(OR)
var tags1= workItem.getValue(WorkItemAttributes.WORK_ITEM_CATEGORY)
Thanks.
|
The question has been closed for the following reason: "Other" by valli Jun 05 '13, 10:37 p.m.
One answer
Ref: https://jazz.net/wiki/bin/view/Main/AttributeCustomization
You may want to try the following syntax: var tags1= workItem.getValue(<your attribute ID>) |