Q: Specific Security Group That Will Have Some Fields Disabled Or With Less Options
Q: Specific Security Group That Will Have Some Fields Disabled Or With Less Options
Hi,
About his question, here is two option you can do.
The first one is to make this Field ReadOnly, but this mean when user out of the specific group will open the work item he will not see any value.
(ReadOnly clears the values)
<FIELD name="FieldName" refname="FieldRefName" type="String" >
<READONLY for="[project]\MyNewGroup" />
</FIELD>
and the second solution is:
<FIELD name="FieldName" refname="FieldRefName" type="String" >
<ALLOWEDVALUES for="[Project]\MyNewGroup">
<LISTITEM value="Yes" />
<LISTITEM value="No" />
</ALLOWEDVALUES>
</FIELD>