TFS中工作项定义中下拉列表项的工具提示

时间:2015-04-23 01:12:42

标签: tfs tfs2013

我在TFS中自定义工作项。其中一个字段是一个包含很少列表项的下拉字段。

<FIELD name="Test" refname="Name.Test"
    type="String" reportable="dimension">
    <HELPTEXT>Cost Center to be billed for this task</HELPTEXT>    
    <ALLOWEDVALUES expanditems="true">    
       <LISTITEM value="001">    
       <LISTITEM value="002">    
       <LISTITEM value="003">    
    </ALLOWEDVALUES>    
      <REQUIRED />   
</FIELD>

我想为每个列表项提供工具提示。例如,默认情况下,对于列表项001,工具提示显示为001,我想自定义它,例如&#34;这是项目001&#34;我尝试为每个列表项设置帮助文本,但它给出了验证错误。是不是可以在TFS上执行此操作?

2 个答案:

答案 0 :(得分:1)

This is not possible to do.

You could put a link to a wiki page that explains the list next to it.

答案 1 :(得分:1)

工具提示限制为255个字符 如需简短列表,您可以这样做:

<HELPTEXT>Cost Center to be billed for this task&#10;This is the item 001&#10;This is the item 002&#10;This is the item 003&#10;</HELPTEXT>