Page 1 of 1

Current User / Assigned To

Posted: 25 Mar 2015
by Sebastian Haugland
How can I get the name of the person in the Assigned To field? (people picker)?

I thought could just get it like this fd.field('AssignedTo').value()

But don't get any value, so I tried the script below - but its only showing the domain\userloginnumber - I need the full name. Can I change the .AccountName to something else like .Display Name etc?

(tried a lot of diferent ....)

My working script on a button click:

var hh = fd.field('AssignedTo').value().dictionaryEntries[0].AccountName;
alert(hh);

Re: Current User / Assigned To

Posted: 26 Mar 2015
by Dmitry Kozlov
Please, use the following code to get the display name of the selected user:

fd.field('AssignedTo').value().text

Re: Current User / Assigned To

Posted: 26 Mar 2015
by Sebastian Haugland
Thanks! , with bit truncation I now have the missing part for my dynamic hyperlink so the user can all his tasks other taks. Again thanks a lot! :)

Re: Current User / Assigned To

Posted: 17 Feb 2016
by marcwenger
Hello, what if I wanted to get the username instead of the display name?


thanks

Re: Current User / Assigned To

Posted: 18 Feb 2016
by rostislav
Hello,

Check this page for a reference on how to set/get various values from various fields: http://formsdesigner.blogspot.com/2013/ ... -form.html

If you have a multi-value people picker field, for example, you'd do this:

Code: Select all

var logins = '';
$.each(fd.field('person').value()
  .dictionaryEntries,
  function() {
    logins += this.AccountName + '; ';
  });

console.log(logins);