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

Tooltip for dropdown list items in work item definition in TFS

我正在自定义 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,我想对其进行自定义,例如 "This is the item 001" 等。我尝试为每个列表项设置帮助文本,但它给出了验证错误。不能在 TFS 上执行此操作吗?

这是不可能的。

您可以将 link 放到解释其旁边列表的 wiki 页面。

工具提示限制为 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>