jimjim
jimjim

Reputation: 2503

How to get a flat view of a TFS item tree?

So the tree view in TFS shows items all over the place, clicking one by one is plain stupid monkey work, There must be a way to view all the items in a tree in one flat view, this is what the most of simple web forums have at least, surely there must be something in TFS to enable one to view all the items of a tree in a flat manner, by that I mean if we have this in a tree

A Release
 B Feature
  F Task
 C Feature
  D Task
  E Task

instead of clicking on each item and going forwards and backwards to read the whole thing we should get a single view as such :

A Release
B Feature
F Task
C Feature
D Task
E Task

I don't know what the search term is for this (if any) under TFS

Upvotes: 3

Views: 1077

Answers (1)

Eddie Chen - MSFT
Eddie Chen - MSFT

Reputation: 29976

There isn't any way to do this in "Backlogs", you can submit a feature request on VSTS User Voice.

However, as an alternative way, you can do this from "Queries". Refer to following steps for details:

  1. Create a query to get all the work items you want and save the query. (You can select the flat list or tree list view if you want). enter image description here

  2. Open the context menu of the new created query and select "Run Query". Then you will get a UI like following: enter image description here

The upper part of the UI shows all the work items with the view mode you set and the left area show the detailed information about the work item you select. When you click the work items, the detailed information will display.

Upvotes: 2

Related Questions