Showing posts with label SharePoint OOB Feature. Show all posts
Showing posts with label SharePoint OOB Feature. Show all posts

Tuesday, October 18, 2016

18 Oct

Custom ribbon button action always disabled when command is defined

The issue is that the feature is not enabled that allows the layouts. To fix the issue go to Site Actions -> Site Settings in the upper right corner. Under "Site Collection Administration" click on "Site Collection Features". Look for "SharePoint Server Publishing Infrastructure" and activate it. It might take a...

Wednesday, September 21, 2016

21 Sep

How to get Open Wiki Page by ID in SharePoint 2013 Page

OOB Feature  Enable "Document ID Service" in the Site Collection Features New entry in the Site Collection Administration appears: "Document ID settings" In this menu you can define a prefix for your Document IDs In any list/library a new column is provided: Document ID (linked to document) Display this column...

Monday, June 20, 2016

20 Jun

Content editor webpart overrides Sharepoint CSS

 CSS, Selectors and its rules for CSS Specificity and you will be able to master any CSS problem. In your scenario you can wrap your content in a DIV unique  selectors ID <div id='myCEWP'>   <H1>Hello World!</H1> </div> And then apply your CSS only to that one H1 in the DIV : <style>  ...

Friday, May 20, 2016

20 May

Sharepoint Calendar change default view

Yes, it is possible to change the default calendar view. Create a new view with all the filters and columns you need. After confirming that the view works as expected, edit the view again and tick the box to make it the default view for the list ...

Thursday, February 18, 2016

18 Feb

SP.SOD in SharePoint?

SP.SOD is a nice feature of SharePoint. function message() { alert("Hello World") } ExecuteOrDelayUntilScriptLoaded(message, "core.js"...

Friday, February 5, 2016

05 Feb

How to add Print Option to SharePoint Page to print one particular web Part?

<input type="button" ID="printBtn1" OnClick="javascript:void(PrintWebPart())" value="Print"><script language="JavaScript">//Controls which Web Part or zone to printvar WebPartElementID = "WebPartWPQ2";//Function to print Web Partfunction PrintWebPart(){var bolWebPartFound = false;if (document.getElementById...

Tuesday, January 19, 2016

19 Jan

How to Copy List item to Another list using sharepoint designer 2013 workflow?

We can use the the REST services to move the items one to another list. Add Dictionary is a new variable  create a dictionary add Build Dictionary action Accept and Content-Type  set the values for both of them to application/json; odata=verbos add key __metadata  New item created from workflow  call...

Thursday, October 22, 2015

22 Oct

How to import .ascx file in SharePoint 2013?

SmartPart  Webpart is  third party tool avaliable  Great webpart to convert your user control into SharePoint 2010/2013 web part, Automatic deployment using the SharePoint Solutions Framework Manual deployment by copying and editing a couple of files  Easy host any ASP.NET user control, basically...
22 Oct

Page viewer Webpart In SharePoint 2013

Go to the web part page Click the Page ribbon tab and click Edit Page In one of the web part zones, click Add a Web Part Click the Media and Content category Click Page Viewer and Add Edit the web part and add the URL to your report Three properties available: Webpage Folder File ...
22 Oct

frame tag in SharePoint Script Editor Webpart

1.Select the gear icon .Click Edit Page 2.Edit Page Select Media and Content Categories 3.Add Script Editor Webpart 4.Click Edit Snippet <iframe src="https://www.google.com/" width="200" height="200"></iframe&g...