本文介绍了将空白选择添加到Priority字段的AllowedValues的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好
我无法弄清楚如何在优先级字段中的字段AllowedValues中添加空白值。有没有办法这样做,语法是什么?
推荐答案
您无法为优先级添加空白值。但您可以删除必需和默认值规则。
You cannot add blank value for priority. But you can remove required and default value rules.
<FIELD name="Priority" refname="Microsoft.VSTS.Common.Priority" type="Integer" reportable="dimension">
<ALLOWEDVALUES expanditems="true">
<LISTITEM value="1" />
<LISTITEM value="2" />
<LISTITEM value="3" />
<LISTITEM value="4" />
</ALLOWEDVALUES>
</FIELD>
这篇关于将空白选择添加到Priority字段的AllowedValues的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!