Category Archives: SharePoint

Generate Pivot Report from SharePoint List Item

We can generate pivot reports directly from SharePoint list items. Step 1: Create a new excel file and go to  File> Options > Add- INS Step 2: Go to Manage Dropdown> COM Add-Ins > Click on Go Button Step 3: select Microsoft … Continue reading

Posted in SharePoint | Tagged , | Leave a comment

Enable Post back for button after downloading file (Response.write) in SharePoint

If you are using custom code to download file(i.e if you are using response.write in your web part), post back gets disabled for the button. hence we can not download 2nd time without refreshing the page. To avoid such problem, just … Continue reading

Posted in SharePoint | Tagged | Leave a comment

SharePoint Search results : SharePoint List items for Anonymous Users

When we enable anonymous access for a site and want to search list items as anonymous user. There is a site collection feature called “Limited-access user permission lockdown mode” which prevents list items to be indexed as anonymous access. A List item … Continue reading

Posted in SharePoint | Tagged , | Leave a comment

SharePoint Excel web Access webpart: dynamically set the active cell value from a slider using ECMA script

Requirement: Use Excel web Access web part to show Excel report(which will have charts) and the worksheet active cells values can be changed through a slider. Note: Active cell is nothing but the selected cell from the worksheet. Image: Excel … Continue reading

Posted in SharePoint | Tagged | 2 Comments

Step by Step method to configure ADFS Claim Provider in SharePoint 2013

This blog describes how to integrate ADFS Claim provider with SharePoint 2013. Broadly the entire Integration will be covered in 3 steps. ADFS relying party configuration Exporting Certificate Configuring Claim provider in SharePoint 1.       ADFS Relying party configuration Active Directory Federation Services … Continue reading

Posted in SharePoint | Tagged | 1 Comment

Easy way to Check in Multiple SharePoint files inside multiple folders

When we have folder structure inside a document library, it is difficult to check all the files at single time. because it shows all the folder instead of files to users, by default SharePoint takes the items(folders) to check in … Continue reading

Posted in SharePoint | Tagged , , , | 31 Comments

Pass Querystring value from SharePoint Page to App Part(Client web part)

As we know an App Part generates an Iframe when it is added into a SharePoint page, so we face difficulty to pass query string value from page to app part. Here is the simple way to handle this. Using … Continue reading

Posted in SharePoint | Tagged , , , , | 9 Comments

Upload large size documents using Client side object model(SharePoint Office 365 online)

SharePoint 2013 Auto hosted Apps: When you create a SharePoint app and try to upload a large size document through client side object model, you face some issue related to maximum size limit. You try below code which works for … Continue reading

Posted in SharePoint | Tagged , , , | 2 Comments

To check SharePoint version of sharepoint site as end user

 Browse any SharePoint site. Take the application host name and append with “/_vti_pvt/buildversion.cnf”. Browse https:///_vti_pvt/buildversion.cnfExample :   Example : https://www.sharepoint.com/_vti_pvt/buildversion.cnf  If it starts with 15 : Sharepoint 2013 14: Sharepoint 2010 12: Sharepoint 2007 

Posted in SharePoint | Leave a comment

How to add multiple hyperlinks to a Custom workflow Task form

We populate the task form values from a custom workflow by ItemMetadata.xml which is a secondary data source. It is easy to show single hyperlink by using hyperlink field as shown below:   Go to Insert tab and click on … Continue reading

Posted in SharePoint | Tagged , , , | Leave a comment