Skip to main content
Nintex Community Menu Bar
  • 3,261 Topics
  • 10,006 Replies
3261 Topics
nfrestservice.svc - where the webservice is hosted in Office 365?

Hi all! For some time I am struggling with using the "PeoplePickerAPI" in Nintex Forms for Office 365. According to the documentation, it should be present under the "NF" object here: NF.PeoplePickerApi (People Picker Extensions - Nintex Forms). But as I expand the NF object in a browser, I see no PeoplePickerApi constructor:So, after discussion with Rebecca Gordon, I decided to give a try to the code she provided, that should add the missing constructor:NF.PeoplePickerApi = (function ($) {    var getData = function (ins) {        ins.d = ins.d || ins.$elem.data("uiItempicker");        return ins.d;    };    var ctor = function (elem) {        this.$elem = $(elem);    };    ctor.prototype = {        added: function (func) {            var a = getData(this).options.itemAdded;            getData(this).options.itemAdded = function () {                a();                func();            };        },        removed: function (func) {            var r = getData(this).options.itemRemoved;Â