Access Linked Work Item via JavaScript
![]()
.
Is there a way to Access Linked Work Item via the JavaScript api ? For example: In validations I would like to have the option to check status of parent WI to know if change attribute is allowed in current WI. How can this be done ? Thank you. |
One answer
![]() Hi,
You can use the proxy object and his method getLinkTypes()
var proxy = workItem.getProxy();
var liens = proxy.getLinkTypes();
|