How to change the default fields in query Result Layout?
Would like to remove Severity and Modified Date from the default Result Columns and change the default Sort Column to Priority. Currently I have to manually make these changes for every query.
Note that Web view and Eclipse view appear to use different defaults for new queries, so I would like to know how to set both. The above example refers to the Web view.
Note that Web view and Eclipse view appear to use different defaults for new queries, so I would like to know how to set both. The above example refers to the Web view.
4 answers
I would greatly appreciate a response to this. Basically create a new query, click "start from scratch", click on the "Result Layout" tab, and click "Set to Defaults". A bunch of default columns appear to the right. Where do I edit that list of default columns?
I found the individual queries in the Process Configuration Source, but the default query settings are not exposed. Sample defined query:
I found the individual queries in the Process Configuration Source, but the default query settings are not exposed. Sample defined query:
<query description="Find all Retrospectives." id="com.ibm.team.workitem.queries.predefined.allRetrospectives" name="Retrospectives">
<select>
<column attribute="id"/>
<column attribute="state"/>
<column attribute="summary"/>
<column attribute="category"/>
<column attribute="target"/>
</select>
<where>
<condition operator="is">
<attribute name="workItemType"/>
<value content="com.ibm.team.workitem.workItemType.retrospective" type="type"/>
</condition>
</where>
<orderBy attribute="target" direction="desc"/>
</query>