<?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>View Archives : Binary Bits</title>
	<atom:link href="https://blog.binarybits.net/tag/view/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.binarybits.net/tag/view/</link>
	<description>Bits &#38; Pieces - A blog by Kannan Balasubramanian</description>
	<lastBuildDate>Tue, 20 Jun 2017 09:30:13 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>Sharepoint list quick edit not available?</title>
		<link>https://blog.binarybits.net/sharepoint-list-quick-edit-not-available/</link>
					<comments>https://blog.binarybits.net/sharepoint-list-quick-edit-not-available/#respond</comments>
		
		<dc:creator><![CDATA[Kannan]]></dc:creator>
		<pubDate>Tue, 20 Jun 2017 09:28:44 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Edit]]></category>
		<category><![CDATA[List View]]></category>
		<category><![CDATA[Quick Edit]]></category>
		<category><![CDATA[View]]></category>
		<guid isPermaLink="false">https://blog.binarybits.net/?p=897</guid>

					<description><![CDATA[<p>When you are vieweing a custom view and don&#8217;t see the &#8220;Edit&#8221; menu also called as &#8220;Quick Edit&#8221;, make sure that particular view has the &#8220;Tabular View&#8221; configured. This is one of the reasons why sharepoint list&#8217;s quick edit is not available in custom viewes. Steps to configure &#8220;Tabular View&#8221; to enable quick edit. Goto [&#8230;]</p>
<p>The post <a href="https://blog.binarybits.net/sharepoint-list-quick-edit-not-available/">Sharepoint list quick edit not available?</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When you are vieweing a custom view and don&#8217;t see the &#8220;Edit&#8221; menu also called as &#8220;Quick Edit&#8221;, make sure that particular view has the &#8220;Tabular View&#8221; configured. This is one of the reasons why sharepoint list&#8217;s quick edit is not available in custom viewes.</p>
<p>Steps to configure &#8220;Tabular View&#8221; to enable quick edit.</p>
<ol>
<li>Goto -&gt; List Settings -&gt; Views -&gt; Click on the view where the &#8220;Edit&#8221; doesn&#8217;t show up</li>
<li>In the view edit page, expand &#8220;Tabular View&#8221; if not already expanded</li>
<li>Check the &#8220;Allow individual item checkboxes &#8221; checkbox.</li>
<li>Click &#8220;OK&#8221; to save the view settings</li>
</ol>
<p>Now the quick edit should have been enabled.</p>
<p>Note: This is applicable for modern view available in Office 365, SharePoint 2016 &amp; SharePoint 2013.</p>
<p>The post <a href="https://blog.binarybits.net/sharepoint-list-quick-edit-not-available/">Sharepoint list quick edit not available?</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.binarybits.net/sharepoint-list-quick-edit-not-available/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<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>
	</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-28 21:03:05 by W3 Total Cache
-->