I have work item type template where i want to assign right to change drop down list to
default value as "Requested" for new item and every one can see and read it.
If user is in group "[TEAM FOUNDATION]\Approvers" or "[TEAM FOUNDATION]\Developers" they are able to change this item.
I have a problem if user is not in either of the groups it will fail and blank display disabled field. How do i define these permissions?
My definition of field is below.
<FIELD name="Approval" refname="Approval" type="String" reportable="dimension">
<REQUIRED />
<DEFAULT from="value" value="Requested" />
<ALLOWEDVALUES>
<LISTITEM value="Approved" />
<LISTITEM value="Requested" />
<LISTITEM value="Rejected" />
</ALLOWEDVALUES>
<DEFAULT from="value" value="Requested" />
<READONLY not="[TEAM FOUNDATION]\Approvers" />
<READONLY not="[TEAM FOUNDATION]\Developers" />
<HELPTEXT>Shows whether the task has been approved by management.</HELPTEXT>
</FIELD>