Using People Fields in Web Parts
SharePoint
2
Posts
2
Posters
9
Views
1
Watching
-
Hi, I am trying to use a user field ("People picker field") in a SharePoint web part but it will not render. Can anyone point me in the direction of how to use a "People Field" in a c# web part? Cheers
Have you created the child controls after creating your control? e.g. something like:
PeopleEditor PeoplePickerControl = new PeopleEditor();
this.Controls.Add(PeoplePickerControl);
base.CreateChildControls();The following article may be useful: http://msdn.microsoft.com/en-us/library/dd490570.aspx[^]