<?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>Drag and Drop Archives : Binary Bits</title>
	<atom:link href="https://blog.binarybits.net/tag/drag-and-drop/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.binarybits.net/tag/drag-and-drop/</link>
	<description>Bits &#38; Pieces - A blog by Kannan Balasubramanian</description>
	<lastBuildDate>Tue, 12 Dec 2017 06:20:53 +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>Sharepoint disable drag and drop</title>
		<link>https://blog.binarybits.net/sharepoint-disable-drag-drop/</link>
					<comments>https://blog.binarybits.net/sharepoint-disable-drag-drop/#respond</comments>
		
		<dc:creator><![CDATA[Kannan]]></dc:creator>
		<pubDate>Tue, 12 Dec 2017 06:20:16 +0000</pubDate>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Drag and Drop]]></category>
		<guid isPermaLink="false">https://blog.binarybits.net/?p=970</guid>

					<description><![CDATA[<p>In some scenarios we might need to disabled drag and drop in SharePoint sites. The following code works when we need to disable a page with one document view. Add the html code in content editor web part where the document view is there. &#60;style type="text/css"&#62; /*-- Hide Drag &#38; Drop --*/ caption.ms-dragDropAttract { caption-side: [&#8230;]</p>
<p>The post <a href="https://blog.binarybits.net/sharepoint-disable-drag-drop/">Sharepoint disable drag and drop</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In some scenarios we might need to disabled drag and drop in SharePoint sites.</p>
<p>The following code works when we need to disable a page with one document view.</p>
<p>Add the html code in content editor web part where the document view is there.</p>
<pre class="lang:xhtml decode:true  " title="SharePoint disable drag and drop">&lt;style type="text/css"&gt;
    /*-- Hide Drag &amp; Drop --*/    
    caption.ms-dragDropAttract {
        caption-side: bottom;
        display: none !important;
    }
&lt;/style&gt;

&lt;script type="text/javascript"&gt;
    /*-- Stop Drag &amp; Drop --*/
    ExecuteOrDelayUntilScriptLoaded(function() {
        g_uploadType = DragDropMode.NOTSUPPORTED;
        SPDragDropManager.DragDropMode = DragDropMode.NOTSUPPORTED;
        SPDragDropManager.DargDropMode.style.display = "none";
    }, "DragDrop.js");
&lt;/script&gt;</pre>
<p>For pages with multiple document libraries when you want to target a specific library prepend the id of the web part div and an underscore e.g. WebPartWPQ4_</p>
<pre class="lang:css decode:true ">#WebPartWPQ4_ms-dnd-dropbox{ display: none !important; }</pre>
<p>Source: https://sharepoint.stackexchange.com/questions/82805/how-can-i-disable-the-document-library-drag-and-drop-function</p>
<p>The post <a href="https://blog.binarybits.net/sharepoint-disable-drag-drop/">Sharepoint disable drag and drop</a> appeared first on <a href="https://blog.binarybits.net">Binary Bits</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.binarybits.net/sharepoint-disable-drag-drop/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-04-23 06:40:01 by W3 Total Cache
-->