Current User / Assigned To
Posted by Sebastian Haugland - Mar 25 ’15 at 07:11
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);
-
Dmitry KozlovAdminMember for: 8 years 9 months 4 days
Please, use the following code to get the display name of the selected user:
fd.field('AssignedTo').value().text
-
Sebastian HauglandMemberMember for: 7 years 3 months 2 days
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!
-
marcwengerMemberMember for: 8 years 6 months 7 days
Hello, what if I wanted to get the username instead of the display name?
thanks
-
rostislavModeratorMember for: 7 years 1 month 19 days
[#3]:
Hello,
Check this page for a reference on how to set/get various values from various fields: http://formsdesigner.blogspot.com/2013/04/getting-and-setting-sharepoint-form.html
If you have a multi-value people picker field, for example, you'd do this:
var logins = ''; $.each(fd.field('person').value() .dictionaryEntries, function() { logins += this.AccountName + '; '; }); console.log(logins);