Questions tagged [peoplepicker]

120 questions
1
vote
1 answer

ABPeoplePickerNavigationController Facebook vs local data

I have an ABPeoplePickerNavigationController that was working perfectly, but now it is not grabbing the values from my contacts and there have been no code changes. The contact has multiple phone numbers and in the past the people picker was seeing…
Chris
  • 955
  • 15
  • 20
1
vote
2 answers

ABPeoplePickerNavigationController navigation barStyle BlackTranslucent dislocates layout

with bar style as BlackOpaque my people picker looks like: but when I want the barStyle to be BlackTranslucent, it looks like this: I have tried solution from here CODE: - (void)showPeoplePickerController { ABPeoplePickerNavigationController…
Nikita P
  • 4,226
  • 5
  • 31
  • 55
1
vote
2 answers

Clear values from people editor SharePoint control

I have a PeopleEditor control on my page. User can add users to people picker and I have a button that sends some sort of email to to those users. However, the values in the People picker value remains even after the postback. Does anyone knows how…
premsh
  • 213
  • 3
  • 6
  • 16
1
vote
1 answer

ABPeoplePickerNavigationController completion handler trying to find text in the cells and get Null

Got a ABPeoplePickerNavigationController and after its displayed I want to search through the cells and find the text i.e. user names displayed. I then want to check the users if they are contained in a coredata NSSet... My issue, I can't seem to…
Aardvark
  • 608
  • 5
  • 15
1
vote
2 answers

Get resolved SPUser IDs from Sharepoint 2010 PeoplePicker

I try to get selected user IDs from people picker control as below: function GetUserIdsFromPP() { var xml = _picker.find('div#divEntityData'); var visiblefor = new Array(); xml.each(function (i, row) { var data =…
marcinn
  • 1,879
  • 2
  • 22
  • 46
1
vote
2 answers

To save a user name into a people field

To save a user name into a people field: Provided a people editor control in my custom form and saved each resolved entity as follows: if (currentPeopleEditor.Entities.Count != 0) { SPFieldUserValueCollection userCollection = new…
user669915
  • 21
  • 1
  • 6
1
vote
1 answer

SharePoint 2010 PeoplePicker Control Not Displaying User Data

Update - 27/08/2012 My company has spoken to Microsoft Support, and this behaviour has been described as "by design" for claims based authentication. Hmmm. The workaround suggested by Microsoft was to develop a custom claims provider that would…
Tangiest
  • 43,737
  • 24
  • 82
  • 113
0
votes
1 answer

display CurrentUserName on list form web part

I have a requirement to display the currently logged in user on a newItem list form the user is filling out- I have a people picker control which I know I can convert to the Rich Text format to display the current user. However, I am having trouble…
jg100309
  • 311
  • 2
  • 7
  • 20
0
votes
1 answer
0
votes
2 answers

How to get email address from a People Picker control after EnsureUser is called in SharePoint?

I have one People Picker and Label on a page, and once I ensure that the user is available in Active Directory, I need to bind the user's email address to the label control. Where would the code for this need to be written? Should it be in the…
Ayyappan Anbalagan
  • 11,022
  • 17
  • 64
  • 94
0
votes
0 answers

Sharepoint Online - Modern Experience - Multi-Select People Picker - Is there a way to ensure the input sort order is retained?

Sharepoint Online - Modern Experience - Multi-Select People Picker - Is there a way to ensure the input sort order is retained? I want to add a multi-select people picker to allow input of a list of sequential approvers. For example, I want to add…
0
votes
0 answers

Combining a Microsoft Graph Toolkit people-picker with Microsoft.Identity.Web log-in in ASP.Net Core 7 MVC C# project

I am having trouble getting the Microsoft Toolkit People-picker to work in my MVC ASP.Net Core 7 project. I used visual studio v22 to create a project that set up the login to Azure AD. In Azure AD, I have given the app Microsoft Graph User.Read…
0
votes
0 answers

How to populate value in People Picker

I am using People picker from @pnp/spfx-controls-react version 3.11.0 but there are no props available for value or selectedItems, but I need to populate user once a line item is removed from the list, on the people picker. Please find the code…
Neel Shah
  • 26
  • 4
0
votes
0 answers

Add current user to multi person combobox in PowerApps

I need to update multi person combobox with current user account. I tried to collect previously saved data from SelectedItems property of current SP list record and then merge it with current user's claims via Collect function, but combobox somehow…
0
votes
0 answers

How to get items from a People Picker Feld to my SharePoint List with SPFx/React?

I'm working on a SharePoint Webpart and I use the People Picker Field, to get the names of people to my List. People Picker works fine, i get the name, I can push all my items to my List, except the items from People Picker field. When i enter some…