Marc
Per your suggestion, I have switch to SpService 2014.01 and jQuery 1.10.1
The SPFindPeoplePicker is still now working for me with SharePoint 2013.
This is the code snippet which I have.
The People picker's display name is "New User" and the value I am trying to set it to is: "Dahake, Pritam" who is a valid user.
The "currentValue" of the "user" variable after the statement gets executed is empty.
I have also tried to set the "valueToSet" property on the "user" object, but that too does not set the users value.
Any help would he greatly appreciated.
Thanks
-Pritam
Per your suggestion, I have switch to SpService 2014.01 and jQuery 1.10.1
The SPFindPeoplePicker is still now working for me with SharePoint 2013.
This is the code snippet which I have.
The People picker's display name is "New User" and the value I am trying to set it to is: "Dahake, Pritam" who is a valid user.
The "currentValue" of the "user" variable after the statement gets executed is empty.
I have also tried to set the "valueToSet" property on the "user" object, but that too does not set the users value.
var user = $().SPServices.SPFindPeoplePicker({
peoplePickerDisplayName: "New User",
valueToSet: "Dahake, Pritam",
checkNames: true
});
user.valueToSet = "Dahake, pritam";Any help would he greatly appreciated.
Thanks
-Pritam