Custom table inside workitem
Hello Team,
I have a requirement to display list of workitems (html table) inside another workitem,
columns should be like (ID,Summary, Status, etc.)
The scenario is like, I want to populate all workitems (w2,w3,w4) that are associated with particular workitem(w1), and i have an attribute in w2,w3 & w4 to represent w1 inside them.
Please help
I have a requirement to display list of workitems (html table) inside another workitem,
columns should be like (ID,Summary, Status, etc.)
The scenario is like, I want to populate all workitems (w2,w3,w4) that are associated with particular workitem(w1), and i have an attribute in w2,w3 & w4 to represent w1 inside them.
Please help
Accepted answer
There is no built in way to do that, really.
Option 1: Create a Custom Editor Presentation which likely is complex and expensive.
Option 2: Create some kind of follow up action or calculated value provider and try to use a WIKI type attribute, where you basically generate the information. This has to be done in Java, as JavaScript does not allow to access other work items from the context of the work item they are running in. See https://rsjazz.wordpress.com/2015/09/30/learning-to-fly-getting-started-with-the-rtc-java-apis/ for a starting point.
Option 1: Create a Custom Editor Presentation which likely is complex and expensive.
Option 2: Create some kind of follow up action or calculated value provider and try to use a WIKI type attribute, where you basically generate the information. This has to be done in Java, as JavaScript does not allow to access other work items from the context of the work item they are running in. See https://rsjazz.wordpress.com/2015/09/30/learning-to-fly-getting-started-with-the-rtc-java-apis/ for a starting point.