Display new work item tags from TFS 2012 Update 2 in TFS Client?

╄→尐↘猪︶ㄣ 提交于 2019-12-11 04:17:56

问题


Work item tags were introduced in TFS 2012 Update 2 as a new feature for Team Web Access.

Is there a way, even a work around, so that the tags can be displayed/edited in the TFS Client?

Even if it was just a semicolon separated textbox would be sufficient.


回答1:


This is currently only available through Web Access. The Team Foundation Server / Visual Studio Team is looking into adding this to other clients as well. The following Visual Studio User Voice items with Product Team Comments hint towards it being released in the future:

  • Allow querying work items by 'Tag'
  • Import tags via excel
  • work item Tag



回答2:


Here is a rudimentary workaround. Add the following to your work item template.

<FORM>
  <Layout HideReadOnlyEmptyFields="true" HideControlBorders="true">
    <Group Margin="(4,0,0,0)">
      <Column PercentWidth="100">
...    
      <Control FieldName="System.Tags" Type="FieldControl" Label="Tags" LabelPosition="Left" />
...
      </Column>
    </Group>
  </Layout>
</FORM>

This will add a read-only field in the client and on the web as well (unfortunately).



来源:https://stackoverflow.com/questions/17595791/display-new-work-item-tags-from-tfs-2012-update-2-in-tfs-client

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!