How to set order of State Groups in Taskboard
![]()
Marc van Lint (85●21●28)
| asked Oct 03 '14, 11:41 a.m.
JAZZ DEVELOPER retagged Oct 13 '14, 4:00 p.m. by Ken Tessier (841●1●7)
In RTC you can define the various State Groups. These are visible in the Taskboard. How can I define the ORDER of the newly created states.
I see now (from left to right): State Group 3 State Group 2 State Group 4 State Group 1 I want to order that into: State Group 1 State Group 2 State Group 3 State Group 4 |
Accepted answer
![]()
open the Process specification source and change the order in the stategroup table for that workitem
<configuration-data xmlns="http://com.ibm.team.workitem/workflow" final="false" id="com.ibm.team.workitem.configuration.workflow"> <stateGroupDefinition category="closed" id="closed" name="Closed" oslcGroup="oslc-closed"/> <stateGroupDefinition category="open" id="open" name="Open"/> <stateGroupDefinition category="inprogress" id="inprogress" name="In Progress" oslcGroup="oslc-inprogress"/> <stateGroupDefinition category="closed" id="verified" name="Verified" oslcGroup="oslc-verified"/> <stateGroupDefinition category="open" id="sg5" name="my group"/> Marc van Lint selected this answer as the correct answer
Comments Hello,
using Eclipse, Open Project, select the Process Configuration Source tab
Thanks Sam but actually I'm an RTC end user, I'm just using RTC by accessing the URL https://igartc03.swg.usma.ibm.com/ my project. Do you mean that if I download Eclipse I can export setting from RTC and re-import then?
you cannot change the content via the web. also, it affects all users of that project
|
Comments
Yes, I found it. It works. Thanks.