<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>People Picker Archives : Binary Bits</title>
	<atom:link href="https://blog.binarybits.net/tag/people-picker/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.binarybits.net/tag/people-picker/</link>
	<description>Bits &#38; Pieces - A blog by Kannan Balasubramanian</description>
	<lastBuildDate>Mon, 24 Aug 2015 10:58:10 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Get People Picker Field Value from SharePoint List &#8211; JSOM</title>
		<link>https://blog.binarybits.net/get-people-picker-field-value-from-sharepoint-list-jsom/</link>
					<comments>https://blog.binarybits.net/get-people-picker-field-value-from-sharepoint-list-jsom/#comments</comments>
		
		<dc:creator><![CDATA[Kannan]]></dc:creator>
		<pubDate>Mon, 24 Aug 2015 10:56:45 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[JSOM]]></category>
		<category><![CDATA[People Picker]]></category>
		<guid isPermaLink="false">https://blog.binarybits.net/?p=724</guid>

					<description><![CDATA[<p>Following is the JSOM code which will help in getting single or multiple items from a SharePoint&#8217;s People Picker Field. function GetPeoplePickerFieldValue(currentListItem, internalFieldName) { if (currentListItem.get_item(internalFieldName) !== 'undefined' &#38;&#38; currentListItem.get_item(internalFieldName) !== null) { if (currentListItem.get_item(internalFieldName).length &#62; 0) { var _user = ""; //If field has only one item if (currentListItem.get_item(internalFieldName).length == 1) { _user = [&#8230;]</p>
<p>The post <a href="https://blog.binarybits.net/get-people-picker-field-value-from-sharepoint-list-jsom/">Get People Picker Field Value from SharePoint List &#8211; JSOM</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Following is the JSOM code which will help in getting single or multiple items from a SharePoint&#8217;s People Picker Field.</p>
<pre class="lang:js decode:true " title="Get People Picker Field Value">function GetPeoplePickerFieldValue(currentListItem, internalFieldName) {
    if (currentListItem.get_item(internalFieldName) !== 'undefined' &amp;&amp; currentListItem.get_item(internalFieldName) !== null) {
        if (currentListItem.get_item(internalFieldName).length &gt; 0) {
            var _user = "";
            //If field has only one item
            if (currentListItem.get_item(internalFieldName).length == 1) {
                _user = currentListItem.get_item(internalFieldName)[0].get_lookupValue();
                if (_user == null)
                    _user = "";
            }
            //If field has multiple item
            if (currentListItem.get_item(internalFieldName).length &gt; 1) {
                for (var i = 0; i &lt; currentListItem.get_item(internalFieldName).length; i++) {
                    //Append all User names with a semi colon separator
                    _user = _user + currentListItem.get_item(internalFieldName)[i].get_lookupValue() + "; ";
                }
                _user.trim;
                if (_user == null)
                    _user = "";
            }
        }
        return _user;
    }
}</pre>
<p>Source: <a href="https://social.technet.microsoft.com/Forums/en-US/f9117751-4be1-43ca-8e3e-435b19601c96/javascript-get-people-picker-value-from-sharepoint-list?forum=sharepointdevelopment" target="_blank">Microsoft TechNet Forum</a></p>
<p>The post <a href="https://blog.binarybits.net/get-people-picker-field-value-from-sharepoint-list-jsom/">Get People Picker Field Value from SharePoint List &#8211; JSOM</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.binarybits.net/get-people-picker-field-value-from-sharepoint-list-jsom/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 
Minified using Disk

Served from: blog.binarybits.net @ 2026-04-19 09:07:03 by W3 Total Cache
-->