Add a content editor WebPart to the New form of custom list and add the below code, replace line 18 SetUserFieldValue function parameter to your people picker column name.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function () { | |
var userid = _spPageContextInfo.userId; | |
function GetCurrentUser() { | |
var requestUri = _spPageContextInfo.webAbsoluteUrl + "/_api/web/getuserbyid(" + userid + ")"; | |
var requestHeaders = { "accept" : "application/json;odata=verbose" }; | |
$.ajax({ | |
url : requestUri, | |
contentType : "application/json;odata=verbose", | |
headers : requestHeaders, | |
success : onSuccess, | |
error : onError | |
}); | |
} | |
function onSuccess(data, request){ | |
var loginName = data.d.Title; | |
SetUserFieldValue("people",loginName); | |
} | |
function onError(error) { | |
//alert(error); | |
} | |
function SetUserFieldValue(fieldName, userName) { | |
var _PeoplePicker = $("div[title='" + fieldName + "']"); | |
var _PeoplePickerTopId = _PeoplePicker.attr('id'); | |
var _PeoplePickerEditer = $("input[title='" + fieldName + "']"); | |
_PeoplePickerEditer.val(userName); | |
var _PeoplePickerOject = SPClientPeoplePicker.SPClientPeoplePickerDict[_PeoplePickerTopId]; | |
_PeoplePickerOject.AddUnresolvedUserFromEditor(true); | |
} | |
GetCurrentUser(); | |
}); | |
</script> |
where is the code block???
ReplyDeleteCheck now
DeleteThankz, this code fixed my issue..
DeleteI'm trying to hide the picker field after filling it so the user can't edit it. Any ideas how to extend your code with such function?
ReplyDeletegreat! It really works for me. Thank you
ReplyDeleteWhere's the code??????
ReplyDeleteIf you are not able view the code in the post, then use this url.
DeleteHi, what can I change if I want to use another user, for example domain\jcartin ?
ReplyDeleteWhat could be the code to add two values on the same field? thank you
ReplyDeleteHello Rajesh, I get correct username(in Alert) after using above script however the peoplepicker does not identify the username. Any hint?
ReplyDeleteThank you, it works perfectly for me
ReplyDeleteWe have updated the sharepoint commulative updates to June, 2016 and now this script is not working, regards,
ReplyDelete