문제

I would like to create a people-picker user field where more than one user can be chosen.

Currently, this is what I'm doing:

SPField field = new SPField(contentType.Fields, "User", "Users");
SPFieldLink fieldLink = new SPFieldLink(field);
contentType.FieldLinks.Add(fieldLink);
contentType.Update();

However, I imagine this only creates a field to select a single user.

도움이 되었습니까?

해결책

Cast it to an SPFieldUser, or create an SPFieldUser in the first place, and set AllowMultipleValues to true.

다른 팁

you can use only AddFieldAsXml because Multiselect User Field is marked as non-UserCreatable :)

list.fields.AddFieldAsXml(<Field Type="UserMulti" DisplayName="My_User_Field" Required="FALSE" UserSelectionMode="PeopleAndGroups" UserSelectionScope="0" Mult="TRUE" Sortable="FALSE" ID="{7293d78b-f9b3-4cce-b85f-ac499fc4fcf2}")
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top