RTC Defect Work Item Does Not Show Summary
On one of the RTC projects I use, Defects show the Summary in the iteration plan, but when you open the defect the summary is missing -- along with the two boxes that show the defect state. I also noticed a tab named "none" that has no content. I expect someone editing something that they should not have, but what?
Thanks, Chris |
Accepted answer
Ralph Schoon (63.5k●3●36●46)
| answered Feb 21 '13, 11:40 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER edited Feb 21 '13, 11:40 a.m.
Hi Chris,
most likely someone modified the Editor Presentations, either modifying a default editor presentation, or by changing the selected ones. You can edit the editor presentation bindings in the Project Configuration in the Work Items section. There are 4 different editor presentations for different contexts. Chris Barlock selected this answer as the correct answer
Comments
Chris Barlock
commented Feb 21 '13, 12:20 p.m.
Yes, I found this to be the case by comparing two different RTC projects. |
One other answer
Yes, I can confirm this has happened. In the default presentation the Header section has turned up as 'none'. The configuration editor will now offer to Add Header in the project configuration.
I guess Chris is fatigued with our problem reporting system.... |
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.
Comments
I distilled this down to the wrong value for layout in the process XML
<tab id="com.ibm.team.workitem.editor.default.internalHeader" layout="builtInOverviewLayout">
<section sectionId="com.ibm.team.workitem.header.default" title="none"/>
</tab>
Should instead be:
<tab id="com.ibm.team.workitem.editor.default.internalHeader"
layout="internalHeader>
<section sectionId="com.ibm.team.workitem.header.default" title="none"/>
</tab>
This appeared early in the history of the project configuration (within the 1st few months)