Showing posts with label web parts. Show all posts
Showing posts with label web parts. Show all posts

March 06, 2014

Hide the recent section in SP2013 webpart

In case you had to hide the recent section in SP2013, the below steps help you to do so

 Create a folder under style lib called “Scripts”  Add the 2  files here
-                Edit the master page and add the following script inside the header:

<script type="text/javascript" src="/Style Library/Scripts/jquery-1.8.3.min.js">//<![CDATA[

          //]]>
          </script>  
          
          <script type="text/javascript" src="/Style Library/Scripts/Functions.js">//<![CDATA[

          //]]>
         </script>


-          Check in and refresh


Special Thanks to my colleagues Maher Hammoud and Ibrahim Kallas



June 26, 2013

Exporting Single Entities using CRMSvcUtil tool

In the last days while working on a CRM customization project that interacts with SharePoint web parts, while refactoring the code, I thought of trying to minimize the size of the file generated originally by the CRMSvcUtil by only choosing the needed entities in my solution. The generated file was almost 5MB in size which is a very big load to the system, but apparently in CRM SDK 2011 microsoft removed the parameter called Entity to specify specific entities. Then I searched the web and found this great post that give a perfect, simple, and working solution for this issue 

http://erikpool.blogspot.com/2011/03/filtering-generated-entities-with.html