<?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>JSLink Archives : Binary Bits</title>
	<atom:link href="https://blog.binarybits.net/tag/jslink/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.binarybits.net/tag/jslink/</link>
	<description>Bits &#38; Pieces - A blog by Kannan Balasubramanian</description>
	<lastBuildDate>Wed, 19 Jul 2017 05:06:42 +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>Display attachments using JSLink in SharePoint</title>
		<link>https://blog.binarybits.net/display-attachments-using-jslink-in-sharepoint/</link>
					<comments>https://blog.binarybits.net/display-attachments-using-jslink-in-sharepoint/#respond</comments>
		
		<dc:creator><![CDATA[Kannan]]></dc:creator>
		<pubDate>Tue, 30 May 2017 10:20:58 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Attachments]]></category>
		<category><![CDATA[JSLink]]></category>
		<category><![CDATA[View]]></category>
		<guid isPermaLink="false">https://blog.binarybits.net/?p=888</guid>

					<description><![CDATA[<p>Recently I had a requirement where the customer wanted to show the actual attachment&#8217;s URL in the list view instead of default Icon. Following JSLink code will help to do that. (function () { var linkFiledContext = {}; linkFiledContext.Templates = {}; linkFiledContext.Templates.Fields = { "Attachments": { "View": OverrideAttachmentFieldRendering } }; SPClientTemplates.TemplateManager.RegisterTemplateOverrides(linkFiledContext); })(); function OverrideAttachmentFieldRendering(ctx) { [&#8230;]</p>
<p>The post <a href="https://blog.binarybits.net/display-attachments-using-jslink-in-sharepoint/">Display attachments using JSLink in SharePoint</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Recently I had a requirement where the customer wanted to show the actual attachment&#8217;s URL in the list view instead of default Icon. Following JSLink code will help to do that.</p>
<pre class="lang:js decode:true ">(function () {
    var linkFiledContext = {};
    linkFiledContext.Templates = {};
    linkFiledContext.Templates.Fields = {
        "Attachments": { "View": OverrideAttachmentFieldRendering }
    };
    SPClientTemplates.TemplateManager.RegisterTemplateOverrides(linkFiledContext);
})();

function OverrideAttachmentFieldRendering(ctx) {
    var itemId = ctx.CurrentItem.ID;
    var listName = ctx.ListTitle;
    return GetAttachments(listName, itemId);
}

function GetAttachments(listName, itemId) {
    var url = _spPageContextInfo.webAbsoluteUrl;
    var requestUri = url + "/_api/web/lists/getbytitle('" + listName + "')/items(" + itemId + ")/AttachmentFiles";
    var htmlString = "&lt;span style='white-space: nowrap;'&gt;No attachment(s)&lt;/span&gt;";

    $.ajax({
        url: requestUri,
        type: "GET",
        headers: { "ACCEPT": "application/json;odata=verbose" },
        async: false,
        success: function (data) {
            for (var i = 0; i &lt; data.d.results.length; i++) {
                htmlString += "&lt;a style='white-space: nowrap;'  href='" + data.d.results[i].ServerRelativeUrl + "'&gt;" + data.d.results[i].FileName + "&lt;/a&gt;";
                if (i != data.d.results.length - 1) {
                    htmlString += "&lt;br/&gt;";
                }
            }
        },
        error: function (error) {
            console.log("An error occured while fetching attachment details. Details: " + JSON.stringify(error))
        }
    });

    return htmlString;
}</pre>
<p>Source: <a href="https://social.msdn.microsoft.com/Forums/office/en-US/29f7998f-ffc5-4877-b975-a49631b53ba2/show-attachments-with-jslink?forum=sharepointdevelopment" target="_blank" rel="noopener noreferrer">https://social.msdn.microsoft.com/Forums/office/en-US/29f7998f-ffc5-4877-b975-a49631b53ba2/show-attachments-with-jslink?forum=sharepointdevelopment</a></p>
<p>The post <a href="https://blog.binarybits.net/display-attachments-using-jslink-in-sharepoint/">Display attachments using JSLink in SharePoint</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.binarybits.net/display-attachments-using-jslink-in-sharepoint/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Change SharePoint&#8217;s &#8220;there are no items to show in this view&#8221; message</title>
		<link>https://blog.binarybits.net/change-sharepoints-there-are-no-items-to-show-in-this-view-message/</link>
					<comments>https://blog.binarybits.net/change-sharepoints-there-are-no-items-to-show-in-this-view-message/#respond</comments>
		
		<dc:creator><![CDATA[Kannan]]></dc:creator>
		<pubDate>Thu, 25 May 2017 10:06:45 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[JSLink]]></category>
		<category><![CDATA[NoListItem]]></category>
		<guid isPermaLink="false">https://blog.binarybits.net/?p=884</guid>

					<description><![CDATA[<p>When a list has not data to be shown in the view, we see the following message. There are no items to show in this view of the &#8220;&#60;ListName&#62;&#8221; list. The following JSLink script helps to change this message. (function () { var overrideCurrentContext = {}; overrideCurrentContext.Templates = {}; overrideCurrentContext.Templates.OnPreRender = changeNoListItemMessage; //OR overrideCurrentContext.OnPreRender = [&#8230;]</p>
<p>The post <a href="https://blog.binarybits.net/change-sharepoints-there-are-no-items-to-show-in-this-view-message/">Change SharePoint&#8217;s &#8220;there are no items to show in this view&#8221; message</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When a list has not data to be shown in the view, we see the following message.</p>
<blockquote><p>There are no items to show in this view of the &#8220;&lt;ListName&gt;&#8221; list.</p></blockquote>
<p>The following JSLink script helps to change this message.</p>
<pre class="lang:js decode:true ">(function () {
    var overrideCurrentContext = {};
    overrideCurrentContext.Templates = {};
    overrideCurrentContext.Templates.OnPreRender = changeNoListItemMessage; //OR overrideCurrentContext.OnPreRender = changeNoListItemMessage;
    SPClientTemplates.TemplateManager.RegisterTemplateOverrides(overrideCurrentContext);
})();

function changeNoListItemMessage(ctx) {
    ctx.ListSchema.NoListItem = "No data";
}</pre>
<p>Source: <a href="http://www.idubbs.com/blog/2015/jslink-csr-to-override-there-are-no-items-to-show-in-this-view/" target="_blank" rel="noopener noreferrer">http://www.idubbs.com/blog/2015/jslink-csr-to-override-there-are-no-items-to-show-in-this-view/</a></p>
<p>The post <a href="https://blog.binarybits.net/change-sharepoints-there-are-no-items-to-show-in-this-view-message/">Change SharePoint&#8217;s &#8220;there are no items to show in this view&#8221; message</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.binarybits.net/change-sharepoints-there-are-no-items-to-show-in-this-view-message/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Displaying SharePoint user presence indicator in CSR</title>
		<link>https://blog.binarybits.net/displaying-sharepoint-user-presence-indicator-csr/</link>
					<comments>https://blog.binarybits.net/displaying-sharepoint-user-presence-indicator-csr/#respond</comments>
		
		<dc:creator><![CDATA[Kannan]]></dc:creator>
		<pubDate>Tue, 23 May 2017 09:15:32 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Client Side Rendering]]></category>
		<category><![CDATA[CSR]]></category>
		<category><![CDATA[JSLink]]></category>
		<category><![CDATA[User Presence]]></category>
		<guid isPermaLink="false">https://blog.binarybits.net/?p=868</guid>

					<description><![CDATA[<p>The following are code snippets which can be used to show a user&#8217;s Lync/Skype for Business presence status in SharePoint Client Side Rendering (CSR). Default Render &#60;span&#62; &#60;span class="ms-imnSpan"&#62; &#60;a href="#" onclick="IMNImageOnClick(event);return false;" class="ms-imnlink ms-spimn-presenceLink"&#62; &#60;span class="ms-spimn-presenceWrapper ms-imnImg ms-spimn-imgSize-10x10"&#62; &#60;img name="imnmark" title="" ShowOfflinePawn="1" class="ms-spimn-img ms-spimn-presence-disconnected-10x10x32" src="/_layouts/15/images/spimn.png?rev=23" alt="User Presence" sip="user@domain.com" id="imn_1,type=sip"&#62;&#60;/img&#62; &#60;/span&#62; &#60;/a&#62; &#60;/span&#62; &#60;span&#62; &#60;a [&#8230;]</p>
<p>The post <a href="https://blog.binarybits.net/displaying-sharepoint-user-presence-indicator-csr/">Displaying SharePoint user presence indicator in CSR</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The following are code snippets which can be used to show a user&#8217;s Lync/Skype for Business presence status in SharePoint Client Side Rendering (CSR).</p>
<h2>Default Render</h2>
<pre class="lang:xhtml decode:true ">&lt;span&gt;
    &lt;span class="ms-imnSpan"&gt;
        &lt;a href="#" onclick="IMNImageOnClick(event);return false;" class="ms-imnlink ms-spimn-presenceLink"&gt;
            &lt;span class="ms-spimn-presenceWrapper ms-imnImg ms-spimn-imgSize-10x10"&gt;
                &lt;img name="imnmark" title="" ShowOfflinePawn="1" class="ms-spimn-img ms-spimn-presence-disconnected-10x10x32" src="/_layouts/15/images/spimn.png?rev=23" alt="User Presence" sip="user@domain.com" id="imn_1,type=sip"&gt;&lt;/img&gt;
            &lt;/span&gt;
        &lt;/a&gt;
    &lt;/span&gt;
    &lt;span&gt;
        &lt;a href="#" onclick="IMNImageOnClick(event);return false;" class="ms-imnlink" tabIndex="-1"&gt;
            &lt;img name="imnmark" title="" ShowOfflinePawn="1" class=" ms-hide" src="/_layouts/15/images/spimn.png?rev=23" alt="User Presence" sip="user@domain.com" id="imn_2,type=sip"&gt;&lt;/img&gt;
        &lt;/a&gt;
        &lt;span&gt;User&lt;/span&gt;
    &lt;/span&gt;
&lt;/span&gt;</pre>
<h2>With Picture Detail View</h2>
<pre class="lang:xhtml decode:true">&lt;div&gt;
    &lt;div class="ms-tableRow"&gt;
        &lt;div&gt;
            &lt;span class="ms-imnSpan"&gt;
                &lt;a href="#" onclick="IMNImageOnClick(event);return false;" class="ms-imnlink ms-spimn-presenceLink"&gt;
                    &lt;span class="ms-spimn-presenceWrapper ms-imnImg ms-spimn-imgSize-10x10"&gt;
                        &lt;img name="imnmark" title="" ShowOfflinePawn="1" class="ms-spimn-img ms-spimn-presence-disconnected-10x10x32" src="/_layouts/15/images/spimn.png?rev=23" alt="User Presence" sip="user@domain.com" id="imn_661,type=sip"&gt;&lt;/img&gt;
                    &lt;/span&gt;
                &lt;/a&gt;
            &lt;/span&gt;
        &lt;/div&gt;
        &lt;div class="ms-tableCell ms-verticalAlignTop"&gt;
            &lt;div class="ms-peopleux-userImgDiv"&gt;
                &lt;span class="ms-imnSpan"&gt;
                    &lt;a href="#" onclick="IMNImageOnClick(event);return false;" class="ms-imnlink" tabIndex="-1"&gt;
                        &lt;img name="imnmark" title="" ShowOfflinePawn="1" class="ms-hide" src="/_layouts/15/images/spimn.png?rev=23" alt="User Presence" sip="user@domain.com" id="imn_3452,type=sip"&gt;&lt;/img&gt;
                    &lt;/a&gt;
                    &lt;span&gt;
                        &lt;img style="width:62px; height:62px; border:none" src="http://userimageurl" alt="User"&gt;&lt;/img&gt;
                    &lt;/span&gt;
                &lt;/span&gt;
            &lt;/div&gt;
        &lt;/div&gt;
        &lt;div class="ms-tableCell ms-peopleux-userdetails ms-noList"&gt;
            &lt;ul style="max-width:150px"&gt;
                &lt;li&gt;
                    &lt;div class="ms-noWrap"&gt;
                        &lt;span&gt;
                            &lt;a href="#" onclick="IMNImageOnClick(event);return false;" class="ms-imnlink" tabIndex="-1"&gt;
                                &lt;img name="imnmark" title="" ShowOfflinePawn="1" class="ms-hide" src="/_layouts/15/images/spimn.png?rev=23" alt="User Presence" sip="user@domain.com" id="imn_34523,type=sip"&gt;&lt;/img&gt;
                            &lt;/a&gt;
                            &lt;span&gt;User&lt;/span&gt;
                        &lt;/span&gt;
                    &lt;/div&gt;
                &lt;/li&gt;
            &lt;/ul&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;</pre>
<h2>With Picture</h2>
<pre class="lang:xhtml decode:true ">&lt;div&gt;
    &lt;div&gt;
        &lt;span&gt;
            &lt;a href="#" onclick="IMNImageOnClick(event);return false;" class="ms-imnlink" tabIndex="-1"&gt;
                &lt;img name="imnmark" title="" ShowOfflinePawn="1" class="ms-hide" src="/_layouts/15/images/spimn.png?rev=23" alt="User Presence" sip="user@domain.com" id="imn_1,type=sip"&gt;&lt;/img&gt;
            &lt;/a&gt;
            &lt;span&gt;
                &lt;img style="width:62px; height:62px; border:none" src="http://userimageurl" alt="User"&gt;&lt;/img&gt;
            &lt;/span&gt;
        &lt;/span&gt;
    &lt;/div&gt;
    &lt;div class="ms-floatLeft ms-descriptiontext"&gt;
        &lt;span class="ms-verticalAlignTop ms-noWrap ms-displayInlineBlock"&gt;
            &lt;span class="ms-imnSpan"&gt;
                &lt;a href="#" onclick="IMNImageOnClick(event);return false;" class="ms-imnlink ms-spimn-presenceLink"&gt;
                    &lt;span class="ms-spimn-presenceWrapper ms-imnImg ms-spimn-imgSize-10x10"&gt;
                        &lt;img name="imnmark" title="" ShowOfflinePawn="1" class="ms-spimn-img ms-spimn-presence-disconnected-10x10x32" src="/_layouts/15/images/spimn.png?rev=23" alt="User Presence" sip="user@domain.com" id="imn_2,type=sip"&gt;&lt;/img&gt;
                    &lt;/span&gt;
                &lt;/a&gt;
            &lt;/span&gt;
            &lt;span class="ms-noWrap ms-imnSpan"&gt;
                &lt;a href="#" onclick="IMNImageOnClick(event);return false;" class="ms-imnlink" tabIndex="-1"&gt;
                    &lt;img name="imnmark" title="" ShowOfflinePawn="1" class="ms-hide" src="/_layouts/15/images/spimn.png?rev=23" alt="User Presence" sip="user@domain.com" id="imn_3,type=sip"&gt;&lt;/img&gt;
                &lt;/a&gt;
                &lt;span&gt;User&lt;/span&gt;
            &lt;/span&gt;
        &lt;/span&gt;
    &lt;/div&gt;
&lt;/div&gt;</pre>
<h2>Presence Only</h2>
<pre class="lang:xhtml decode:true ">&lt;span class="ms-imnSpan"&gt;
    &lt;a href="#" onclick="IMNImageOnClick(event);return false;" class="ms-imnlink ms-spimn-presenceLink"&gt;
        &lt;span class="ms-spimn-presenceWrapper ms-imnImg ms-spimn-imgSize-10x10"&gt;
            &lt;img name="imnmark" title="" ShowOfflinePawn="1" class="ms-spimn-img ms-spimn-presence-disconnected-10x10x32" src="/_layouts/15/images/spimn.png?rev=23" alt="User Presence" sip="user@domain.com" id="imn_1,type=sip"&gt;&lt;/img&gt;
        &lt;/span&gt;
    &lt;/a&gt;
&lt;/span&gt;</pre>
<h2>Picture Only</h2>
<pre class="lang:xhtml decode:true ">&lt;div&gt;
    &lt;div&gt;
        &lt;div class="ms-tableCell"&gt;
            &lt;span class="ms-imnSpan"&gt;
                &lt;a href="#" onclick="IMNImageOnClick(event);return false;" class="ms-imnlink ms-spimn-presenceLink"&gt;
                    &lt;span class="ms-spimn-presenceWrapper ms-spimn-imgSize-8x72"&gt;
                        &lt;img name="imnmark" title="" ShowOfflinePawn="1" class="ms-spimn-img ms-spimn-presence-disconnected-8x72x32" src="/_layouts/15/images/spimn.png?rev=23" alt="User Presence" sip="user@domain.com" id="imn_1,type=sip"&gt;&lt;/img&gt;
                    &lt;/span&gt;
                &lt;/a&gt;
            &lt;/span&gt;
        &lt;/div&gt;
        &lt;div class="ms-tableCell ms-verticalAlignTop"&gt;
            &lt;div class="ms-peopleux-userImgDiv"&gt;
                &lt;span class="ms-imnSpan"&gt;
                    &lt;a href="#" onclick="IMNImageOnClick(event);return false;" class="ms-imnlink" tabIndex="-1"&gt;
                        &lt;img name="imnmark" title="" ShowOfflinePawn="1" class="ms-hide" src="/_layouts/15/images/spimn.png?rev=23" alt="User Presence" sip="user@domain.com" id="imn_2,type=sip"&gt;&lt;/img&gt;
                    &lt;/a&gt;
                    &lt;span class="ms-peopleux-imgUserLink"&gt;
                        &lt;span class="ms-peopleux-userImgWrapper" style="width:72px; height:72px"&gt;
                            &lt;img style="min-width:72px; min-height:72px; clip:rect(0px, 72px, 72px, 0px); max-width:72px" src="http://userimageurl" alt="User"&gt;&lt;/img&gt;
                        &lt;/span&gt;
                    &lt;/span&gt;
                &lt;/span&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;</pre>
<p>Source: <a href="http://www.sharepointcolumn.com/lync-presence-indicators-code-snippets-in-sharepoint-2013/" target="_blank" rel="noopener noreferrer">http://www.sharepointcolumn.com/lync-presence-indicators-code-snippets-in-sharepoint-2013/</a></p>
<p>The post <a href="https://blog.binarybits.net/displaying-sharepoint-user-presence-indicator-csr/">Displaying SharePoint user presence indicator in CSR</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.binarybits.net/displaying-sharepoint-user-presence-indicator-csr/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>JSLink URL Tokens in SharePoint</title>
		<link>https://blog.binarybits.net/jslink-url-tokens-in-sharepoint/</link>
					<comments>https://blog.binarybits.net/jslink-url-tokens-in-sharepoint/#respond</comments>
		
		<dc:creator><![CDATA[Kannan]]></dc:creator>
		<pubDate>Wed, 17 May 2017 03:54:15 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[JSLink]]></category>
		<category><![CDATA[Tokens]]></category>
		<category><![CDATA[URL]]></category>
		<guid isPermaLink="false">https://blog.binarybits.net/?p=855</guid>

					<description><![CDATA[<p>Following are some of the JSLink URL Tokens I have come across in SharePoint. ~site – reference to the current SharePoint site (or “Web”) ~sitecollection – reference to the current SharePoint site collection (or “Site”) ~layouts – version specific reference to the web application Layouts folder (so it will automatically swap out /_layouts/14 or /_layouts/15 [&#8230;]</p>
<p>The post <a href="https://blog.binarybits.net/jslink-url-tokens-in-sharepoint/">JSLink URL Tokens in SharePoint</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Following are some of the JSLink URL Tokens I have come across in SharePoint.</p>
<ul>
<li><strong>~site</strong> – reference to the current SharePoint site (or “Web”)</li>
<li><strong>~sitecollection</strong> – reference to the current SharePoint site collection (or “Site”)</li>
<li><strong>~layouts</strong> – version specific reference to the web application Layouts folder (so it will automatically swap out /_layouts/14 or /_layouts/15 for you)</li>
<li><strong>~sitecollectionlayouts</strong> – reference to the layouts folder in the current site collection (e.g. /sites/team/_layouts/15)</li>
<li><strong>~sitelayouts</strong> – reference to the layouts folder in the current site (e.g. /sites/teams/subsite/_layouts/15)</li>
</ul>
<p><strong>Few Examples:</strong></p>
<pre class="lang:js decode:true ">~sitecollection/_catalogs/masterpage/
~site/siteassets/
~layouts/reputation.js</pre>
<p>Source: <a href="https://www.martinhatch.com/2013/08/jslink-and-display-templates-part-1.html" target="_blank" rel="noopener noreferrer">https://www.martinhatch.com/2013/08/jslink-and-display-templates-part-1.html</a></p>
<p>The post <a href="https://blog.binarybits.net/jslink-url-tokens-in-sharepoint/">JSLink URL Tokens in SharePoint</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.binarybits.net/jslink-url-tokens-in-sharepoint/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Load multiple JavaScript files in SharePoint JSLink</title>
		<link>https://blog.binarybits.net/load-multiple-javascript-files-sharepoint-jslink/</link>
					<comments>https://blog.binarybits.net/load-multiple-javascript-files-sharepoint-jslink/#respond</comments>
		
		<dc:creator><![CDATA[Kannan]]></dc:creator>
		<pubDate>Mon, 15 May 2017 11:07:27 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[JSLink]]></category>
		<guid isPermaLink="false">https://blog.binarybits.net/?p=847</guid>

					<description><![CDATA[<p>To load multiple JavaScript files in SharePoint JSLink, insert a pipe symbol between multiple JavaScript file links in the JSLink field of webpart&#8217;s properties. JSLink Field Example: ~sitecollection/SiteAssets/jquery.min.js&#124;~site/SiteAssets/my-custom-file.js A piple symbo is a &#8220;&#124;&#8221; without quotes Source: https://egilhansen.com/2013/03/11/jslink-the-simple-way-to-add-and-load-multiple-javascript-files/</p>
<p>The post <a href="https://blog.binarybits.net/load-multiple-javascript-files-sharepoint-jslink/">Load multiple JavaScript files in SharePoint JSLink</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>To load multiple JavaScript files in SharePoint JSLink, insert a pipe symbol between multiple JavaScript file links in the JSLink field of webpart&#8217;s properties.</p>
<p>JSLink Field Example:</p>
<pre class="lang:xhtml decode:true ">~sitecollection/SiteAssets/jquery.min.js|~site/SiteAssets/my-custom-file.js</pre>
<p><em>A piple symbo is a &#8220;|&#8221; without quotes</em></p>
<p>Source: <a href="https://egilhansen.com/2013/03/11/jslink-the-simple-way-to-add-and-load-multiple-javascript-files/" target="_blank" rel="noopener noreferrer">https://egilhansen.com/2013/03/11/jslink-the-simple-way-to-add-and-load-multiple-javascript-files/</a></p>
<p>The post <a href="https://blog.binarybits.net/load-multiple-javascript-files-sharepoint-jslink/">Load multiple JavaScript files in SharePoint JSLink</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.binarybits.net/load-multiple-javascript-files-sharepoint-jslink/feed/</wfw:commentRss>
			<slash:comments>0</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-05-14 17:48:22 by W3 Total Cache
-->